-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add semantic pull request title linting (#2006)
enforces following conventional commit standard in all PR titles
- Loading branch information
1 parent
49f7be8
commit 7aede33
Showing
1 changed file
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# this workflow is responsible for ensuring quality titles are given to all PRs | ||
# for PR checks to pass, the title must follow the Conventional Commits standard | ||
# https://www.conventionalcommits.org/en/v1.0.0/ | ||
# this workflow was adapted from a similar workflow in https://github.com/cosmos/cosmos-sdk | ||
name: "Lint PR Title" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
main: | ||
permissions: | ||
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs | ||
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR | ||
runs-on: ubuntu-latest | ||
steps: | ||
# https://github.com/marketplace/actions/semantic-pull-request | ||
- uses: amannn/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |