Skip to content

Commit

Permalink
Fix errand double parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
justinretzolk committed Jun 6, 2024
1 parent 15b621f commit dd21df2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/labelers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: |
github.event_name == 'pull_request_target'
&& steps.author.conclusion != 'skipped'
&& fromJSON(steps.author.outputs.is_maintainer))
&& fromJSON(steps.author.outputs.is_maintainer)
run: |
gh pr edit "$ISSUE_URL" --add-label prioritized
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Add prioritized to Maintainer Assignments
if: |
steps.assignee.conclusion != 'skipped'
&& fromJSON(steps.assignee.outputs.is_maintainer))
&& fromJSON(steps.assignee.outputs.is_maintainer)
run: |
gh $GH_CLI_SUBCOMMAND edit "$ISSUE_URL" --add-label prioritized
Expand Down

0 comments on commit dd21df2

Please sign in to comment.