-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add GH workflow to validate PR titles follow Conventional Commits. (
#587) Co-authored-by: kirkrodrigues <2454684+kirkrodrigues@users.noreply.github.com>
- Loading branch information
1 parent
9a8bb59
commit 2dfcd8a
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "clp-pr-title-checks" | ||
|
||
on: | ||
pull_request_target: | ||
types: ["edited", "opened", "reopened"] | ||
branches: ["main"] | ||
|
||
concurrency: | ||
group: "${{github.workflow}}-${{github.ref}}" | ||
|
||
# Cancel in-progress jobs for efficiency | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
conventional-commits: | ||
permissions: | ||
# For amannn/action-semantic-pull-request | ||
pull-requests: "read" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "amannn/action-semantic-pull-request@v5" | ||
env: | ||
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}" |