Dependabot auto-merge #1105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot auto-merge | |
on: | |
schedule: | |
# Only merge PRs (UTC time). Please keep in sync with the if statement (around line 24). | |
- cron: "0 8 * * Mon,Wed" | |
# Report blocked PRs (UTC time) | |
- cron: "0 14 * * Mon" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
auto-merge: | |
name: Auto merge | |
runs-on: [node-small, self-hosted] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Merge PRs | |
uses: getyourguide/actions/dependabot-merge@main | |
with: | |
github_token: ${{ secrets.GYGROBOT_PR_TOKEN }} | |
slack_channel: "#mlplatform-alerts" | |
slack_dependabot_token: ${{ secrets.SLACK_DEPENDABOT_TOKEN }} # globally accessible | |
slack_ping_support: true |