Skip to content

Commit

Permalink
Possible fix for the triage not working (#1298)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericsimard committed Aug 14, 2023
1 parent 0b1e04a commit 7dbbb21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Bug triage
on:
issues:
types:
- labeled
- opened
jobs:
triage:
if: github.event.label.name == 'bug'
if: github.event.issue.labels.contains('bug')
runs-on: ubuntu-latest
steps:
- name: Create card
uses: alex-page/github-project-automation-plus@v0.8.2
with:
project: Bug triage
column: Requires investigation
repo-token: ${{ secrets.TRIAGE_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Comment issue
uses: actions/github-script@v6
with:
Expand Down

0 comments on commit 7dbbb21

Please sign in to comment.