Skip to content

Commit

Permalink
feat: update bump version workflow (#40)
Browse files Browse the repository at this point in the history
* feat: update bump version workflow
  • Loading branch information
khoilen authored Jan 10, 2025
1 parent d6c323c commit c943909
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/pull-request-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Closes #
- [ ] My code requires changes to the documentation
- [ ] I have updated the documentation as required
- [ ] All the tests have passed
- [ ] The dependencies in `package.json` are correct and necessary (no unused or missing package
- [ ] The dependencies in `package.json` are correct and necessary (no unused or missing package)

## ℹ Additional Information

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
echo "new_version=$version" >> $GITHUB_ENV
if [$version != "unknown" ]; then
git checkout -b bump-${{ github.event.inputs.app }}-version-$version
git add .
git add apps/${{ github.event.inputs.app }}/package.json
git commit -m "Bump ${{ github.event.inputs.app }} version to $version"
git tag "v$version"
git push origin bump-${{ github.event.inputs.app }}-version-$version --follow-tags
Expand All @@ -79,5 +79,5 @@ jobs:
title: "Bump version to ${{ env.new_version }} for ${{ github.event.inputs.app }}"
body: "This PR bumps the version to ${{ env.new_version }} for ${{ github.event.inputs.app }}."
labels: version-bump
assignees: khoilen
reviewers: khoilen
assignees: khoilen, tintungtang
reviewers: khoilen, tintungtang

0 comments on commit c943909

Please sign in to comment.