forked from aws/jsii
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove usage of semantic pr app for action (aws#3515)
Removes usage of the [Semantic Pull Requests App](https://github.com/zeke/semantic-pull-requests) in favor of a [github action](https://github.com/amannn/action-semantic-pull-request) since the app hasn't been functioning for some time.
- Loading branch information
1 parent
ccd5a5a
commit f1a56e3
Showing
3 changed files
with
38 additions
and
20 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
name: pull-request-lint | ||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
- edited | ||
jobs: | ||
validate: | ||
name: Validate PR Title | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
types: |- | ||
feat | ||
fix | ||
chore | ||
docs | ||
style | ||
refactor | ||
perf | ||
test | ||
build | ||
ci | ||
revert | ||
requireScope: false |
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