We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0aa75c commit 0857d97Copy full SHA for 0857d97
.github/workflows/buid-deploy-test.yml
@@ -83,3 +83,13 @@ jobs:
83
uses: thomaseizinger/keep-a-changelog-new-release@v1
84
with:
85
version: v${{ steps.tag.outputs.date }}
86
+
87
+ - name: Commit changelog
88
+ id: make-commit
89
+ run: |
90
+ git config user.name "GitHub actions"
91
+ git config user.email [email protected]
92
+ git add CHANGELOG.md package.json
93
+ git commit --message "Prepare release ${{ github.event.inputs.version }}"
94
+ echo "::set-output name=commit::$(git rev-parse HEAD)"
95
+ git push
0 commit comments