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/mirror.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
build:
name: Mirror and Trigger EICweb
runs-on: ubuntu-latest
runs-on: ubuntu-slim
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

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

runs-on: ubuntu-slim is not a valid GitHub-hosted runner label (supported values are ubuntu-latest / ubuntu-24.04 / ubuntu-22.04 / etc.), so this workflow will fail to start. If you intended to use a self-hosted runner, include self-hosted and the label(s) (e.g., runs-on: [self-hosted, ubuntu-slim]); if you intended a slimmer OS/userspace, keep a supported Ubuntu runner and use a container: image like ubuntu:24.04/ubuntu:jammy (or a custom slim image) for the job steps.

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

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

I think this is wrong. Would you agree, @wdconinc ?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Yeah, I think ubuntu-slim here is fine.

permissions:
actions: write
contents: read
Expand Down
Loading