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 ae4a18b commit c946960Copy full SHA for c946960
.github/.dependabot.yml
@@ -0,0 +1,11 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "yarn"
4
+ schedule:
5
+ interval: weekly
6
+ requiredLabels:
7
+ - dependencies
8
+ commit-message:
9
+ prefix: fix
10
+ prefix-development: chore
11
+ include: scope
.github/workflows/pr.yaml
@@ -0,0 +1,23 @@
+name: "Semantic PR"
+
+on:
+ pull_request_target:
+ types:
+ - opened
+ - edited
+ - synchronize
+jobs:
+ main:
12
+ name: Validate PR title
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: amannn/action-semantic-pull-request@v5
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ with:
19
+ types: |
20
+ fix
21
+ feat
22
+ chore
23
+ revert
0 commit comments