Trigger workflows after Checks complete #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # DO NOT EDIT: This file should only be modified in the `go-library-template` repo. | |
| name: Trigger workflows after Checks complete | |
| # This workflow triggers other workflows after external checks complete | |
| on: | |
| check_run: | |
| types: | |
| - completed | |
| permissions: | |
| actions: write # required for `workflow-dispatch` to trigger the automerge workflow | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| trigger_workflows_after_checks_complete: | |
| name: Trigger workflows after Checks complete | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| ref: ${{ github.event.check_run.head_sha }} | |
| persist-credentials: false | |
| - name: Get Pull Request Information | |
| id: get_pr | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| PR_DATA=$(gh api repos/${{ github.repository }}/commits/${{ github.event.check_run.head_sha }}/pulls --jq '.[0]') | |
| if [ "$PR_DATA" = "null" ]; then | |
| echo "No pull request found for this commit" | |
| echo "pr_data={}" >> $GITHUB_OUTPUT | |
| else | |
| echo "pr_data=$PR_DATA" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Automerge | |
| if: steps.get_pr.outputs.pr_data != '{}' | |
| uses: ./.github/actions/trigger-automerge | |
| with: | |
| event: '{"pull_request":${{ steps.get_pr.outputs.pr_data }}}' | |
| hasAutoApproverPrivateKey: ${{ secrets.AUTO_APPROVER_PRIVATE_KEY != '' }} |