Browse Source

Skip double building on Dependabot branches (#24025)

closed-social-glitch-2
Nick Schonning 1 year ago
committed by GitHub
parent
commit
fb13f37475
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions
  1. +4
    -0
      .github/workflows/rebase-needed.yml
  2. +2
    -0
      .github/workflows/test-ruby.yml

+ 4
- 0
.github/workflows/rebase-needed.yml View File

@ -2,7 +2,11 @@ name: PR Needs Rebase
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request_target:
branches-ignore:
- 'dependabot/**'
types: [synchronize]
permissions:

+ 2
- 0
.github/workflows/test-ruby.yml View File

@ -2,6 +2,8 @@ name: Ruby Testing
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
env:

Loading…
Cancel
Save