Skip to content

Commit 5e24199

Browse files
committed
do not run builds twice on dependabot PRs
1 parent dca2157 commit 5e24199

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pr_push.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Checks required for a PR to merge. This workflow mostly call other workflows.
22
name: PR/push
33

4-
on: [push, pull_request]
4+
on:
5+
push:
6+
branches-ignore:
7+
-"dependabot/**"
8+
pull_request:
59

610
concurrency:
711
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)