Skip to content

Commit

Permalink
fix(workflow): run job only on open issues
Browse files Browse the repository at this point in the history
Add a conditional check to the `update-project-status` job in the GitHub
Actions workflow. This ensures the job only runs when the issue state is
'open'.
  • Loading branch information
Amygos committed Dec 10, 2024
1 parent 3f462c2 commit 55c9e29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/change-status-on-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ permissions:

jobs:
update-project-status:
if: ${{ github.event.issue.state == 'open' }}
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 55c9e29

Please sign in to comment.