Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI-328] Pin Ubuntu version for GitHub Actions workflows #4

Merged
merged 1 commit into from
Dec 4, 2024
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: 4 additions & 4 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# see https://github.com/marketplace/actions/dependabot-auto-merge
# 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-latest
runs-on: ubuntu-24.04
steps:
# Check if auto merges/deploys are allowed
- name: Auto Merges/deploys allowed?
- name: Auto Merges/deploys allowed?
uses: 1debit/pr-auto-merge-action@v1
# Check if PR can be auto-approved
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.DEPENDABOT_AUTO_MERGE }} # 1debitops token
Expand Down