Skip to content

Commit 77960fe

Browse files
committed
Ignore pushes to dependabot branches as per official recommendation
1 parent 61a9a78 commit 77960fe

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [main, releases/**]
5+
branches:
6+
- main
7+
- 'releases/**'
8+
branches-ignore:
9+
- dependabot/**
610
pull_request:
711
# The branches below must be a subset of the branches above
8-
branches: [main, releases/**]
12+
branches:
13+
- main
14+
- 'releases/**'
915
schedule:
1016
- cron: '0 19 * * 3'
1117

.github/workflows/cross-version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- 'releases/*'
7+
- 'releases/**'
8+
branches-ignore:
9+
- dependabot/**
810
pull_request:
911
branches:
1012
- '*'

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
name: "Validate Gradle Wrapper"
2-
on: [push, pull_request]
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- 'releases/**'
8+
branches-ignore:
9+
- dependabot/**
10+
pull_request:
11+
branches:
12+
- '*'
313

414
jobs:
515
validation:

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- 'releases/*'
7+
- 'releases/**'
8+
branches-ignore:
9+
- dependabot/**
810
pull_request:
911
branches:
1012
- '*'

.github/workflows/reproducible-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ name: Reproducible build
33
on:
44
push:
55
branches:
6-
- main
7-
- 'releases/*'
6+
- main
7+
- 'releases/**'
8+
branches-ignore:
9+
- dependabot/**
810
pull_request:
911
branches:
10-
- '*'
12+
- '*'
1113

1214
env:
1315
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}

0 commit comments

Comments
 (0)