Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/dependabot-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
pull_request:
branches:
- master
- 3008.x
- 3007.x
- 3006.x

permissions:
Expand All @@ -14,8 +16,10 @@ permissions:
jobs:
sync-requirements:
name: Sync .lock files
# Trigger for any dependabot actor
if: contains(github.actor, 'dependabot') || github.event_name == 'workflow_dispatch'
# Trigger for dependabot, and for the salt-pr-bot rebases that re-push
# dependabot branches (github.actor is salt-pr-bot[bot] on those events,
# which otherwise skips this job and leaves the lock files stale).
if: contains(github.actor, 'dependabot') || contains(github.actor, 'salt-pr-bot') || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
environment: workflow-restart
steps:
Expand Down
Loading