update: fixed versioning errors #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Changelog | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
generate-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Generate Changelog | |
uses: BobAnkh/[email protected] | |
with: | |
REPO_NAME: "${{ github.repository }}" | |
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PATH: "../CHANGELOG" # Adjust the path if needed | |
COMMIT_MESSAGE: "docs(CHANGELOG): update release notes" | |
TYPE: "[add]: Feature,[fix]: Bug Fixes,[update]: Documentation" |