Skip to content

feat: Migrate to FastApi #56

feat: Migrate to FastApi

feat: Migrate to FastApi #56

Workflow file for this run

name: Bump Version
on:
push:
branches: [ "master" ]
workflow_dispatch:
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.11'
- name: Update pip
run: python -m pip install --upgrade pip
- name: Bump version
id: cz
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}