We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee196f commit cce9de4Copy full SHA for cce9de4
.github/workflows/update_package_list.yml
@@ -34,3 +34,17 @@ jobs:
34
git pull --rebase
35
git fetch
36
git push -f origin HEAD:auto-update
37
+ - name: Create Issue on Failed workflow
38
+ if: ${{ failure() }}
39
+ uses: dacbd/create-issue-action@main
40
+ with:
41
+ token: ${{ github.token }}
42
+ title: Action workflow failed.
43
+ body: |
44
+ ### Context
45
+ [Failed Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
46
+ [Codebase](https://github.com/${{ github.repository }}/tree/${{ github.sha }})
47
+ Workflow name - `${{ github.workflow }}`
48
+ Job - `${{ github.job }}`
49
+ status - `${{ job.status }}`
50
+ assignees: Luois45
0 commit comments