Skip to content

Commit

Permalink
Update create-update-iteration-plan.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
crazygo authored Oct 27, 2024
1 parent 4221777 commit 49181ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/create-update-iteration-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
- name: Check issue title
id: check_title
run: echo "::set-output name=skip::$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)"
run: echo "skip=$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)" >> $GITHUB_OUTPUT
# run: echo "::set-output name=skip::$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)"

- name: Check out the repository
if: steps.check_title.outputs.skip == 'false'
Expand Down

0 comments on commit 49181ae

Please sign in to comment.