[CI-328] Pin Ubuntu version for GitHub Actions workflows #4
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
# To learn more about Dependabot configuration at Chime, visit: http://go/dependabot-configuration | |
name: "Dependabot Automerge" | |
on: pull_request_target | |
jobs: | |
auto-merge: | |
if: startsWith(github.head_ref, 'dependabot') | |
runs-on: ubuntu-24.04 | |
steps: | |
# Check if auto merges/deploys are allowed | |
- name: Auto Merges/deploys allowed? | |
uses: 1debit/pr-auto-merge-action@v1 | |
# Check if PR can be auto-approved | |
- uses: actions/checkout@v4 | |
- uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
github-token: ${{ secrets.DEPENDABOT_AUTO_MERGE }} # 1debitops token | |
config: .github/dependabot-auto-merge.config.yml |