Skip to content

Commit c946960

Browse files
committed
chore: dependabot and pr title
Signed-off-by: Marin Petrunic <marin.petrunic@gmail.com>
1 parent ae4a18b commit c946960

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/.dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Semantic PR"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
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

Comments
 (0)