-
Notifications
You must be signed in to change notification settings - Fork 3.2k
45 lines (43 loc) · 1.26 KB
/
semantic-pull-request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: "Semantic Pull Request"
# @see https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
actions: none
checks: none
# to check out & read the repository
contents: read
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pages: none
# to read pull-request data, including commits/issues linked
pull-requests: read
repository-projects: none
security-events: none
statuses: none
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
main:
name: Semantic Pull Request
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- run: npm install
working-directory: scripts/github-actions/semantic-pull-request/
- name: Lint PR Title and Cypress Changelog Entry
if: github.event_name == 'pull_request_target'
uses: actions/github-script@v7
with:
script: |
const verifyPullRequest = require('./scripts/github-actions/semantic-pull-request')
await verifyPullRequest({ context, core, github })