Skip to content

Commit

Permalink
test the failed-build-issue action
Browse files Browse the repository at this point in the history
  • Loading branch information
jakevdp committed Sep 17, 2024
1 parent de11577 commit b988b79
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tmp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
# Trigger the workflow on push or pull request, but only on main branch
push:
branches:
- main
pull_request:
branches:
- main

permissions:
issues: write # for failed-build-issue action

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
try-failued-build-issue:
runs-on: ubuntu-latest
steps:
- uses: jayqi/failed-build-issue-action@1a893bbf43ef1c2a8705e2b115cd4f0fe3c5649b # v1.2.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b988b79

Please sign in to comment.