Merge pull request #1001 from robbrad/council-request-verification-ch… #523
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 Version | |
on: | |
push: | |
# Trigger unless only the wiki directory changed | |
paths-ignore: | |
- "wiki/**" | |
- "**/**.md" | |
branches: [ "master" ] | |
jobs: | |
bump: | |
if: "!startsWith(github.event.head_commit.message, 'bump:')" | |
runs-on: ubuntu-latest | |
environment: bump | |
concurrency: bump | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}" | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Bump version | |
id: cz | |
uses: commitizen-tools/commitizen-action@master | |
with: | |
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |