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
14 changes: 10 additions & 4 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
# Caller owns on:. Pin at @v2.
# Enable "Allow auto-merge" on the repository. This workflow does not approve.
# If branch protection requires reviews, add a ruleset bypass for dependabot
# or pass TOKEN (a PAT/App) that can enable auto-merge. Do not checkout the PR.
# pull_request: try to queue GitHub auto-merge (no-op without required checks).
# schedule: squash-merge Dependabot PRs whose checks are green.
# Do not checkout the PR. This workflow does not approve.
# If rulesets require reviews, add a bypass for Dependabot or pass TOKEN.
name: Dependabot

on:
pull_request:
schedule:
- cron: '*/15 * * * *'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
merge:
if: github.event.pull_request.user.login == 'dependabot[bot]'
if: >-
github.event_name != 'pull_request'
|| github.event.pull_request.user.login == 'dependabot[bot]'
permissions:
contents: write
pull-requests: write
Expand Down