Skip to content

Commit

Permalink
Skip external branches in ci-unit-tests-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 authored Nov 17, 2023
1 parent c3b11e3 commit b1219ba
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci-unit-tests-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ on:
default: false

pull_request:
# Skip branches from external repositories, let them pass, and then Mergify will check them
branches:
# Include all branches
- '**'
# Exclude external repositories
- '!**/**'
# But include mergify and dependabot
- 'mergify/**'
- 'dependabot/**'
paths:
# code and tests
- '**/*.rs'
Expand Down

0 comments on commit b1219ba

Please sign in to comment.