Skip to content

Commit

Permalink
fix(workflows): PR in PRs board is in review in progress only when ch…
Browse files Browse the repository at this point in the history
…anges are requested (#2213)
  • Loading branch information
louismaximepiton authored Aug 29, 2023
1 parent 1094cca commit 8d42e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-pr-review-in-progress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
move_card_to_dev_review_in_progress:
if: ${{ github.event.pull_request.draft == false && github.event.review.state != 'approved' && github.actor != vars.LEAD_DEV_GH_USERNAME && github.actor != vars.A11Y_REVIEWER_GH_USERNAME }}
if: ${{ github.event.pull_request.draft == false && github.event.review.state == 'changes_requested' && github.actor != vars.LEAD_DEV_GH_USERNAME && github.actor != vars.A11Y_REVIEWER_GH_USERNAME }}
runs-on: ubuntu-latest
steps:
- name: Get Project Data
Expand Down

0 comments on commit 8d42e7d

Please sign in to comment.