diff options
| author | Steffen Ernst <steffen.ernst@mullvad.net> | 2025-05-20 09:36:08 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2025-05-26 16:27:44 +0200 |
| commit | d64109fc7a166d21bf2b13542b24c3e3c3eb6b66 (patch) | |
| tree | 624a04e7d0c5a71f2d334d5f53b5bcf4a532cc8e /.github | |
| parent | b6e498ad1b1d4626ad3703d5afb57a719be650e2 (diff) | |
| download | mullvadvpn-d64109fc7a166d21bf2b13542b24c3e3c3eb6b66.tar.xz mullvadvpn-d64109fc7a166d21bf2b13542b24c3e3c3eb6b66.zip | |
Add run for ios e2e tests when pr opened
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ios-end-to-end-tests-merge-to-main.yml | 1 | ||||
| -rw-r--r-- | .github/workflows/ios-end-to-end-tests-pr-opened.yml | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ios-end-to-end-tests-merge-to-main.yml b/.github/workflows/ios-end-to-end-tests-merge-to-main.yml index b40c5600e6..34f0d85f84 100644 --- a/.github/workflows/ios-end-to-end-tests-merge-to-main.yml +++ b/.github/workflows/ios-end-to-end-tests-merge-to-main.yml @@ -5,6 +5,7 @@ on: pull_request: types: - closed + - opened branches: - main paths: diff --git a/.github/workflows/ios-end-to-end-tests-pr-opened.yml b/.github/workflows/ios-end-to-end-tests-pr-opened.yml new file mode 100644 index 0000000000..28fd8521e9 --- /dev/null +++ b/.github/workflows/ios-end-to-end-tests-pr-opened.yml @@ -0,0 +1,24 @@ +--- +name: iOS end-to-end on pr opened +on: + workflow_dispatch: + pull_request: + types: + - opened + branches: + - main + paths: + - .github/workflows/ios-end-to-end-tests*.yml + - ios/** + +permissions: + contents: read + issues: write + pull-requests: write + +jobs: + reuse-e2e-workflow: + uses: ./.github/workflows/ios-end-to-end-tests.yml + with: + arg_tests_json_key: "pr-opened" + secrets: inherit |
