Skip to content

Commit

Permalink
added new workflow for version
Browse files Browse the repository at this point in the history
Sometimes I forget to bump the version. So here is an action to check and yell at me when I forget
  • Loading branch information
BarthPaleologue committed Feb 23, 2024
1 parent 936a43c commit 0e40698
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/check-version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check Version Bump
on:
pull_request:
branches: [ "main" ]

jobs:
check-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: johnnybenson/package-json-versioned-action@v1.0.5
id: package-json
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo "has-updated -- ${{ steps.package-json.outputs.has-updated }}"
- run: echo "previous-version -- ${{ steps.package-json.outputs.previous-version }}"
- run: echo "version -- ${{ steps.package-json.outputs.version }}"
# the action will fail if the version has not been updated
- run: |
if [ "${{ steps.package-json.outputs.has-updated }}" = "false" ]; then
echo "The version has not been updated"
exit 1
fi

0 comments on commit 0e40698

Please sign in to comment.