Skip to content

Commit 55c9e29

Browse files
committed
fix(workflow): run job only on open issues
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'.
1 parent 3f462c2 commit 55c9e29

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/change-status-on-labels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ permissions:
1111

1212
jobs:
1313
update-project-status:
14+
if: ${{ github.event.issue.state == 'open' }}
1415
runs-on: ubuntu-latest
1516
env:
1617
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)