We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51bc6d commit 64943afCopy full SHA for 64943af
.github/workflows/cicd.yml
@@ -9,14 +9,6 @@ on:
9
10
jobs:
11
# BEGIN LINTING STAGE
12
- validate-pr-title:
13
- name: Validate PR title
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: amannn/action-semantic-pull-request@v4
17
- env:
18
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
-
20
get-packages-paths:
21
runs-on: ubuntu-latest
22
outputs:
.github/workflows/title-validation.yml
@@ -0,0 +1,14 @@
1
+name: title-validation
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, reopened, synchronize]
6
7
+jobs:
8
+ validate-pr-title:
+ name: Validate PR title
+ runs-on: ubuntu-latest
+ steps:
+ - uses: amannn/action-semantic-pull-request@v4
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments