Skip to content

Commit

Permalink
Merge pull request #21160 from hashicorp/justin/fix-issue-comment-cre…
Browse files Browse the repository at this point in the history
…ated

Fix comparison
  • Loading branch information
justinretzolk authored Oct 5, 2021
2 parents a8ebd65 + ede901c commit 626859b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issue-comment-created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
issue_comment_triage:
if: github.event_name = 'issue_comment' && !contains(fromJSON('["anGie44", "bflad", "breathingdust", "dependabot[bot]", "DrFaust92", "ewbankkit", "gdavison", "justinretzolk", "maryelizbeth", "YakDriver", "zhelding"]'), github.actor)
if: github.event_name == 'issue_comment' && !contains(fromJSON('["anGie44", "bflad", "breathingdust", "dependabot[bot]", "DrFaust92", "ewbankkit", "gdavison", "justinretzolk", "maryelizbeth", "YakDriver", "zhelding"]'), github.actor)
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-remove-labels@v1
Expand Down

0 comments on commit 626859b

Please sign in to comment.