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
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:

jobs:
merge:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Merge workflow runner label invalid

GitHub Actions does not provide a hosted runner labeled ubuntu-slim—the supported Ubuntu labels are ubuntu-latest/ubuntu-24.04/ubuntu-22.04. With runs-on: ubuntu-slim, the Dependabot auto-merge job will queue and then fail with “No runner matching the specified labels was found,” so Dependabot PRs will stop auto-merging.

Useful? React with 👍 / 👎.

Copy link

Copilot AI Nov 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner label ubuntu-slim does not appear to be a valid GitHub-hosted runner. GitHub's official Ubuntu runners are ubuntu-latest, ubuntu-24.04, ubuntu-22.04, and ubuntu-20.04.

If ubuntu-slim is intended to be a self-hosted runner, please ensure:

  1. The runner is properly configured and registered with the repository
  2. The runner has the ubuntu-slim label assigned
  3. Documentation is added to explain the custom runner setup

If this is not a self-hosted runner, consider using one of the official GitHub-hosted runners instead.

Suggested change
runs-on: ubuntu-slim
runs-on: ubuntu-latest

Copilot uses AI. Check for mistakes.
if: github.actor == 'dependabot[bot]' && github.repository == 'josh/github_exporter'

steps:
Expand Down