Skip to content

Commit

Permalink
Quick fix: add expression notation to stale label comment if && condi…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
kyleecodes authored Nov 26, 2024
1 parent 8e38eb2 commit 1368106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/community-issue-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Issue Comment Workflows

on:
workflow_run:
workflows: ["Label Stale Contributions"]
workflows: [Label Stale Contributions]
types:
- completed
issues:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
# 'Label Stale Contributions' workflow runs
# Returns: Posts warning comment tagging assignee
stale-label-comment:
if: github.event.action == 'labeled' && github.event.label.name == 'stale'
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'stale' }}
runs-on: ubuntu-latest
steps:
- name: Post stale issue comment
Expand Down

0 comments on commit 1368106

Please sign in to comment.