|
| 1 | +name: integration |
| 2 | + |
| 3 | +on: |
| 4 | + |
| 5 | + pull_request: |
| 6 | + types: [opened, synchronize] |
| 7 | + |
| 8 | + merge_group: |
| 9 | + |
| 10 | + |
| 11 | +jobs: |
| 12 | + trigger-tests: |
| 13 | + if: github.event_name == 'pull_request' |
| 14 | + runs-on: ubuntu-latest |
| 15 | + environment: "test-trigger-is" |
| 16 | + |
| 17 | + steps: |
| 18 | + - uses: actions/checkout@v4 |
| 19 | + |
| 20 | + - name: Generate GitHub App Token |
| 21 | + id: generate-token |
| 22 | + uses: actions/create-github-app-token@v1 |
| 23 | + with: |
| 24 | + app-id: ${{ secrets.DECO_WORKFLOW_TRIGGER_APP_ID }} |
| 25 | + private-key: ${{ secrets.DECO_WORKFLOW_TRIGGER_PRIVATE_KEY }} |
| 26 | + owner: ${{ secrets.ORG_NAME }} |
| 27 | + repositories: ${{secrets.REPO_NAME}} |
| 28 | + |
| 29 | + - name: Trigger Workflow in Another Repo |
| 30 | + env: |
| 31 | + GH_TOKEN: ${{ steps.generate-token.outputs.token }} |
| 32 | + run: | |
| 33 | + gh workflow run cli-isolated-pr.yml -R ${{ secrets.ORG_NAME }}/${{secrets.REPO_NAME}} \ |
| 34 | + --ref main \ |
| 35 | + -f pull_request_number=${{ github.event.pull_request.number }} \ |
| 36 | + -f commit_sha=${{ github.event.pull_request.head.sha }} |
| 37 | +
|
| 38 | +
|
| 39 | +
|
| 40 | + # Statuses and checks apply to specific commits (by hash). |
| 41 | + # Enforcement of required checks is done both at the PR level and the merge queue level. |
| 42 | + # In case of multiple commits in a single PR, the hash of the squashed commit |
| 43 | + # will not match the one for the latest (approved) commit in the PR. |
| 44 | + # We auto approve the check for the merge queue for two reasons: |
| 45 | + # * Queue times out due to duration of tests. |
| 46 | + # * Avoid running integration tests twice, since it was already run at the tip of the branch before squashing. |
| 47 | + auto-approve: |
| 48 | + if: github.event_name == 'merge_group' |
| 49 | + runs-on: ubuntu-latest |
| 50 | + steps: |
| 51 | + - name: Mark Check |
| 52 | + env: |
| 53 | + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 54 | + shell: bash |
| 55 | + run: | |
| 56 | + gh api -X POST -H "Accept: application/vnd.github+json" \ |
| 57 | + -H "X-GitHub-Api-Version: 2022-11-28" \ |
| 58 | + /repos/${{ github.repository }}/statuses/${{ github.sha }} \ |
| 59 | + -f 'state=success' \ |
| 60 | + -f 'context=Integration Tests Check' |
0 commit comments