Skip to content

ci: Add GitHub workflow to run code linting checks daily and on every push or pull request. #9

ci: Add GitHub workflow to run code linting checks daily and on every push or pull request.

ci: Add GitHub workflow to run code linting checks daily and on every push or pull request. #9

Workflow file for this run

name: "pr-title"
on:
pull_request_target:
types: ["edited", "opened", "reopened"]
branches: ["main"]
permissions:
pull-requests: "read"
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
conventional-commits:
runs-on: "ubuntu-latest"
steps:
- uses: "amannn/action-semantic-pull-request@v5"
env:
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"