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

Update package.json
  • Loading branch information
BarthPaleologue committed Feb 23, 2024
1 parent 936a43c commit ee857d8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/check-version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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 }}

- name: Check if version has been updated
if: steps.package-json.outputs.has-updated == 'false'
run: |
echo "The version has not been updated"
exit 1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"version": "1.6.2",
"version": "1.6.4",
"description": "CosmosJourneyer",
"name": "cosmos-journeyer",
"scripts": {
Expand Down

0 comments on commit ee857d8

Please sign in to comment.