🐛 fix(realized_volatility_helpers): refactor Rogers-Satchell volatili… #173
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: Bump Package Version | |
on: | |
push: | |
branches: | |
- main | |
- master | |
permissions: | |
contents: write | |
jobs: | |
bump-version: | |
if: "contains(github.event.head_commit.message, 'bump(release)') == false" | |
runs-on: ubuntu-latest | |
name: "Bump version and create changelog with commitizen" | |
steps: | |
- name: Check out Repo | |
uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.GH_PAT_CLASSIC }}" | |
fetch-depth: 0 | |
- name: Create bump and changelog | |
uses: commitizen-tools/commitizen-action@master | |
with: | |
github_token: "${{ secrets.GH_PAT_CLASSIC }}" | |
changelog_increment_filename: body.md | |
extra_requirements: "cz-conventional-gitmoji" | |
git_name: "jjfantini" | |
git_email: "jenningsfantini+github@gmail.com" | |
- name: Generate Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: humbldata v${{ env.REVISION }} | |
body_path: "body.md" | |
tag_name: v${{ env.REVISION }} | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |