Skip to content

Commit b398e17

Browse files
committed
random unconventional commit
1 parent efddcb1 commit b398e17

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ env:
1717
CI_BRANCH: ${{ github.ref_name }}
1818
HLX_AWS_REGION: ${{ secrets.AWS_REGION }}
1919
jobs:
20+
validate-pr-title:
21+
if: github.event_name == 'pull_request'
22+
runs-on: ubuntu-latest
23+
permissions:
24+
contents: read
25+
pull-requests: read
26+
steps:
27+
- name: Validate PR title
28+
uses: amannn/action-semantic-pull-request@v6
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
2032
protect-nyc-config:
2133
if: github.event_name == 'pull_request'
2234
runs-on: ubuntu-latest
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: PR Title (on edit)
2+
3+
on:
4+
pull_request:
5+
types: [edited]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: read
10+
11+
jobs:
12+
validate-pr-title:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Validate PR title
16+
uses: amannn/action-semantic-pull-request@v6
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)