Skip to content

Commit c03ce73

Browse files
authored
[Feature:Developer] Add workflow to fix dependabot PR titles
1 parent f95b958 commit c03ce73

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Dependabot PR Title Fixer'
2+
on:
3+
pull_request_target:
4+
# check when PR
5+
# * is created,
6+
# * title is edited, and
7+
# * new commits are added (to ensure failing title blocks merging)
8+
types: [ opened, reopened, edited, synchronize ]
9+
10+
jobs:
11+
title-check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: submitty/action-dependabot-title-fixer@main
15+
with:
16+
token: ${{ secrets.REPO_SCOPED_TOKEN }}

0 commit comments

Comments
 (0)