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
34 changes: 32 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,39 @@ version: 2
updates:
- package-ecosystem: "uv"
directory: "/"
open-pull-requests-limit: 5
schedule:
interval: "daily"
interval: daily
time: "08:30"
timezone: Europe/Berlin
groups:
patch-and-minor:
update-types:
- patch
- minor
cooldown:
semver-major-days: 21
semver-minor-days: 7
semver-patch-days: 3
default-days: 7
exclude:
- '*getyourguide*'
- package-ecosystem: "npm"
directory: "/"
open-pull-requests-limit: 5
schedule:
interval: "daily"
interval: daily
time: "08:30"
timezone: Europe/Berlin
groups:
patch-and-minor:
update-types:
- patch
- minor
cooldown:
semver-major-days: 21
semver-minor-days: 7
semver-patch-days: 3
default-days: 7
exclude:
- '*getyourguide*'
20 changes: 20 additions & 0 deletions .github/workflows/dependabot-approve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Dependabot Approve

on:
pull_request:
types: [opened, synchronize]

concurrency:
group: ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}

permissions:
contents: read
pull-requests: write

jobs:
auto-approve:
name: Approve PR
uses: getyourguide/actions/.github/workflows/dependabot-approve.yml@main
with:
pr-url: ${{ github.event.pull_request.html_url }}
22 changes: 22 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependabot Auto Merge

on:
workflow_dispatch:
schedule:
- cron: "0 9 * * 1-5"

concurrency:
group: ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}

permissions:
pull-requests: write
id-token: write

jobs:
auto-merge:
name: Auto merge
uses: getyourguide/actions/.github/workflows/dependabot-merge.yml@main
secrets: inherit
with:
slack_ping_support: true