feat: improve code-base and ci #5
Workflow file for this run
This file contains hidden or 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: PR Title check | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
permissions: | |
pull-requests: read | |
contents: read | |
jobs: | |
enforce-pr-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ensure PR Title is Conventional Commit | |
uses: amannn/action-semantic-pull-request@v5 | |
with: | |
types: | | |
feat | |
fix | |
chore | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |