Comment on PR for CI Failure #9
This file contains 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
name: Comment on PR for CI Failure | |
permissions: | |
pull-requests: write | |
on: | |
workflow_run: | |
workflows: [Monkey CI] | |
types: [completed] | |
jobs: | |
on-failure: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
steps: | |
- name: Download workflow artifact | |
uses: dawidd6/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
workflow: peek_icons.yml | |
run_id: ${{ github.event.workflow_run.id }} | |
- name: Read the pr_num file | |
id: pr_num_reader | |
uses: juliangruber/[email protected] | |
with: | |
path: ./pr_num/pr_num.txt | |
- name: Create comment | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.API_TOKEN }} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: ${{ steps.pr_num_reader.outputs.content }}, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Continuous integration check(s) failed. Please review the failing check\'s logs and make the necessary changes. ' + context.payload.workflow_run.html_url | |
}) |