Skip to content

Commit

Permalink
fix: wrap __version__.py value in double quotes so that it matches bl…
Browse files Browse the repository at this point in the history
…ack rules
  • Loading branch information
lpm0073 committed Nov 28, 2023
1 parent 1a0277d commit 88f7214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pullRequestController.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ on:
paths:
- "**.py"
- "**.requirements.txt"
- "**.package.json"
- "./grader/**"

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semanticVersionBump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
id: update_version
run: |
echo "# -*- coding: utf-8 -*-" > ${{ env.VERSION_FILE }}
echo "__version__ = '${{ env.NEXT_VERSION }}'" >> ${{ env.VERSION_FILE }}
echo "__version__ = \"${{ env.NEXT_VERSION }}\"" >> ${{ env.VERSION_FILE }}
echo "" >> ${{ env.VERSION_FILE }}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
Expand Down

0 comments on commit 88f7214

Please sign in to comment.