Maint: fix dependabot CI trigger
This commit is contained in:
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@@ -29,8 +29,11 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
verify:
|
verify:
|
||||||
# Only run if it's a push event or if it's a PR from this repository
|
# Only run if it's a push event or if it's a PR from this repository, and it is not dependabot.
|
||||||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
|
if: |
|
||||||
|
github.actor != 'dependabot[bot]'
|
||||||
|
(github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
DOCKER_BUILDKIT: "1"
|
DOCKER_BUILDKIT: "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user