Conversation
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions workflow that mirrors the repo and triggers EICweb CI by changing the runner label used for the build job.
Changes:
- Switches the workflow job runner from
ubuntu-latesttoubuntu-slim.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| build: | ||
| name: Mirror and Trigger EICweb | ||
| runs-on: ubuntu-latest | ||
| runs-on: ubuntu-slim |
There was a problem hiding this comment.
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.
| runs-on: ubuntu-slim | |
| runs-on: ubuntu-latest |
There was a problem hiding this comment.
I think this is wrong. Would you agree, @wdconinc ?
There was a problem hiding this comment.
Yeah, I think ubuntu-slim here is fine.
No description provided.