feat: implement auto-release GHA and conventional commits. #1
Workflow file for this run
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: Check branch commit | |
on: | |
push: | |
branches: | |
- '**' # matches every branch ... | |
- '!main' # ... that is not main | |
jobs: | |
isort: | |
uses: ./.github/workflows/isort.yml | |
black: | |
uses: ./.github/workflows/black.yml | |
build: | |
uses: ./.github/workflows/build.yml |