diff --git a/.github/pull-request-template.md b/.github/pull-request-template.md index 31a598e..b509a8c 100644 --- a/.github/pull-request-template.md +++ b/.github/pull-request-template.md @@ -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 diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 647122c..4651be2 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -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 @@ -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