ci(github): Migrate "Semantic Pull Requests" App to GH Action (#1334)
Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
cd65701281
commit
8aadace16b
2 changed files with 29 additions and 3 deletions
3
.github/semantic.yml
vendored
3
.github/semantic.yml
vendored
|
@ -1,3 +0,0 @@
|
||||||
## Reference: https://github.com/zeke/semantic-pull-requests
|
|
||||||
# Always validate the PR title, and ignore the commits
|
|
||||||
titleOnly: true
|
|
29
.github/workflows/pr-title.yml
vendored
Normal file
29
.github/workflows/pr-title.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
## Reference: https://github.com/amannn/action-semantic-pull-request
|
||||||
|
name: "Lint PR"
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
name: Validate PR title
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: amannn/action-semantic-pull-request@v4
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
# Configure which scopes are allowed.
|
||||||
|
scopes: |
|
||||||
|
argo-cd
|
||||||
|
argo-events
|
||||||
|
argo-rollouts
|
||||||
|
argo-workflows
|
||||||
|
argocd-image-updater
|
||||||
|
github
|
||||||
|
# Configure that a scope must always be provided.
|
||||||
|
requireScope: true
|
Loading…
Reference in a new issue