Skip to content

Commit c44e2a4

Browse files
committed
random unconventional commit
1 parent 448f8e4 commit c44e2a4

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
@@ -15,6 +15,18 @@ env:
1515
CI_BRANCH: ${{ github.ref_name }}
1616
HLX_AWS_REGION: ${{ secrets.AWS_REGION }}
1717
jobs:
18+
validate-pr-title:
19+
if: github.event_name == 'pull_request'
20+
runs-on: ubuntu-latest
21+
permissions:
22+
contents: read
23+
pull-requests: read
24+
steps:
25+
- name: Validate PR title
26+
uses: amannn/action-semantic-pull-request@v6
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
1830
protect-nyc-config:
1931
if: github.event_name == 'pull_request'
2032
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)