Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci-azure-supersede.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ concurrency:
jobs:
supersede:
# Fork PRs get a read-only token that cannot cancel runs; their lanes keep FIFO.
if: github.event.pull_request.head.repo.full_name == github.repository
# Dependabot PRs never start a ci-azure run, so there is nothing to supersede.
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ env:

jobs:
authorize:
# Dependabot only ever bumps action pins, and its runs get no repository secrets.
# Every job below depends on authorize, so skipping it here keeps the whole matrix
# off the Azure runner pools. azure-migration-tests already skips the same way; the
# earlier attempts at this only patched that file, which is why it kept firing.
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
timeout-minutes: 2
outputs:
Expand Down
Loading