enhancement(ci): for selfhosted workflows migrated to arc based runner#76
Merged
Merged
Conversation
Ref: rtCamp/support#886 Ref: rtCamp/support#905 (comment) Signed-off-by: Dipankar Das <65275144+dipankardas011@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR migrates the “private” CI/reusable workflows from GitHub-hosted/containerized execution to ARC-backed self-hosted runners, simplifying the job definitions while keeping the existing build/test flow intact.
Changes:
- Switch multiple reusable workflows (and the private workflow test) to
runs-on: [self-hosted]and drop the pinnedactions-runnercontainer usage. - Adjust
wp-envconfiguration for ARC/DinD by movingWP_ENV_HOMEand simplifying the plugin mapping update logic. - Remove various “cleanup workspace” steps that were previously needed for the containerized runner approach.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test-private-workflows.yml | Moves the private-workflow test job to self-hosted execution. |
| .github/workflows/reusable-wp-playground-pr-preview.yml | Runs the Playground PR preview job on self-hosted runners and removes container/extra setup. |
| .github/workflows/reusable-phpunit.yml | Runs PHPUnit workflow on self-hosted and updates wp-env temp/home handling. |
| .github/workflows/reusable-phpstan.yml | Runs PHPStan workflow on self-hosted and removes container/cleanup logic. |
| .github/workflows/reusable-phpcs.yml | Runs PHPCS workflow on self-hosted and removes container/cleanup logic. |
| .github/workflows/reusable-lint-css-js.yml | Runs JS/CSS lint workflow on self-hosted and removes container/cleanup logic. |
| .github/workflows/reusable-jest.yml | Runs Jest workflow on self-hosted and removes container/cleanup logic. |
| .github/workflows/reusable-e2e.yml | Runs Playwright E2E workflow on self-hosted and updates wp-env temp/home handling. |
| .github/workflows/reusable-build.yml | Runs build workflow on self-hosted and updates wp-env temp/home handling. |
| .github/workflows/ci.yml | Removes max-parallel: 1 from the PHPUnit matrix strategy. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Author
|
@justlevine I cancelled the CI and CI (public workflows) and got the CI (private workflows) running Refer: https://github.com/rtCamp/plugin-skeleton-d/actions/runs/29072535225 So its all working 🚀 |
justlevine
approved these changes
Jul 10, 2026
justlevine
left a comment
Collaborator
There was a problem hiding this comment.
Love it. Thanks so much @dipankardas011 🙇
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Ref: rtCamp/support#886
Why
Ref: https://github.com/rtCamp/support/issues/905#issuecomment-4913603327
Checklist