Skip to content

Commit 4ba2f7a

Browse files
committed
fix
1 parent 016593e commit 4ba2f7a

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Semantic Breaking Change PR
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- labeled
10+
- unlabeled
11+
12+
jobs:
13+
main:
14+
name: Validate Breaking Change PR
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: ./.github/actions/prepare-install
19+
- uses: ./.github/actions/breaking-pr-check
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/semantic-pr-titles.yml

-9
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,3 @@ jobs:
5050
end with a full-stop.
5151
For PRs that add or change ESLint-plugin rules, you should begin
5252
the title with "[rule-name] "
53-
breaking-change:
54-
name: Validate breaking change PR
55-
runs-on: ubuntu-latest
56-
steps:
57-
- uses: actions/checkout@v4
58-
- uses: ./.github/actions/prepare-install
59-
- uses: ./.github/actions/breaking-pr-check
60-
env:
61-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)