Skip to content

Commit

Permalink
fix flag name
Browse files Browse the repository at this point in the history
  • Loading branch information
hugtalbot committed Dec 16, 2023
1 parent fc9eb54 commit 7a6e1c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-timing-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
if [ $AGE_IN_DAYS -lt 7 ]; then
if [[ $(echo "${{ github.event.pull_request.labels.*.name }}" | grep -c 'pr: fast merge') -eq 0 ]]; then
echo "PR is less than 7 days old and does not have the 'pr: fast merge' label."
echo "PR is less than 7 days old (${{$AGE_IN_DAYS}}) and does not have the 'pr: fast merge' label."
echo "${{ github.event.pull_request.labels.*.name }}"
exit 1
fi
fi
Expand Down

0 comments on commit 7a6e1c6

Please sign in to comment.