Skip to content

Test build

Test build #6001

Workflow file for this run

name: Semantic PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# pull_request_target:
# types:
# - opened
# - edited
# - synchronize
pull_request:
permissions:
pull-requests: write
jobs:
main:
# By default, these PR titles are allowed:
# https://github.com/commitizen/conventional-commit-types
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.NOVASAMA_APP_ID }}
private_key: ${{ secrets.NOVASAMA_APP_PRIVATE_KEY }}
# Documentation: https://github.com/amannn/action-semantic-pull-request
- uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
with:
types: |
major
feat
fix
chore
docs
style
refactor
test
build
ci
revert
validateSingleCommit: true
wip: true