Skip to content

Commit

Permalink
Merge pull request #4662 from MidnightCommander/fix-issue-type-labeler
Browse files Browse the repository at this point in the history
maint: explicitly compare preset issue type names in labeler workflow
  • Loading branch information
zyv authored Mar 4, 2025
2 parents 428cf9f + 5431b55 commit 6849d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/process-incoming-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- uses: actions/github-script@v7
id: set-issue-type
if: ${{ ! steps.get-issue-type.outputs.result.repository.issue.issueType }}
if: ${{ steps.get-issue-type.outputs.result.repository.issue.issueType.name != "Bug" && steps.get-issue-type.outputs.result.repository.issue.issueType.name != "Feature" }}
with:
script: |
return github.graphql(`
Expand Down

0 comments on commit 6849d39

Please sign in to comment.