Skip to content

Commit db2303b

Browse files
author
Ryan Lymburner
authored
Correct Dependabot to run "make presubmit" before creating PRs (#758)
1 parent 5688112 commit db2303b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dependabot-go-mod-tidy.yml renamed to .github/workflows/dependabot-make-presubmit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Dependabot Go Mod Tidy
1+
name: Dependabot Make Presubmit
22

33
on:
44
pull_request:
@@ -26,9 +26,9 @@ jobs:
2626
with:
2727
go-version: '1.x'
2828

29-
- name: Run go mod tidy
29+
- name: Run make presubmit
3030
run: |
31-
go mod tidy
31+
make presubmit
3232
3333
- name: Check for changes
3434
id: git-check
@@ -46,5 +46,5 @@ jobs:
4646
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
4747
git config --local user.name "github-actions[bot]"
4848
git add go.mod go.sum
49-
git commit -m "Run go mod tidy for Dependabot PR"
49+
git commit -m "Run make presubmit for Dependabot PR"
5050
git push

0 commit comments

Comments
 (0)