summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ios-end-to-end-tests-pr-opened.yml
blob: 28fd8521e9b4fbc3246d2a0c790e8603bf209607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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