Skip to content

Commit

Permalink
Merge pull request #35 from lldelisle/fix33
Browse files Browse the repository at this point in the history
fix the case syntax
  • Loading branch information
mvdbeek authored Aug 22, 2024
2 parents 5d81a77 + c25031e commit 58f2479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ jobs:
case $REPO in
workflows/*)
TITLE=$(python3 "${{ github.workspace }}/autoupdate/pr_text_iwc.py" --repo "$REPO" --log "${{ github.workspace }}/autoupdate.log" --out "${{ github.workspace }}/body.txt" --changelog "$REPO/CHANGELOG.md")
FILE_TO_CHECK=${REPO}/CHANGELOG.md
;;
FILE_TO_CHECK=${REPO}/CHANGELOG.md;;
*)
TITLE=$(python3 "${{ github.workspace }}/autoupdate/pr_text.py" --repo "$REPO" --log "${{ github.workspace }}/autoupdate.log" --shed "$REPO/.shed.yml" --out "${{ github.workspace }}/body.txt")
FILE_TO_CHECK=
;;
FILE_TO_CHECK=;;
esac
# Check if there is a branch/PR that already exists
# We cannot use the -A option of `gh pr list` because the PR author changes with the Personal Access Token used,
Expand Down

0 comments on commit 58f2479

Please sign in to comment.