The runner is the application that runs a job from a GitHub Actions workflow. It is used by GitHub Actions in the hosted virtual environments, or you can self-host the runner in your own environment.
For more information about installing and using self-hosted runners, see Adding self-hosted runners and Using self-hosted runners in a workflow
Runner releases:
Create a .env file based on the example provided and provide a PAT with repo admin permissions. If you're creating runners across the org then the PAT needs org admin permissions.
> runners
directory created as it will be required to remove the runners from your system background process.
make runners group=<group-here> labels=<label-here>
- spawn 5 new GitHub self-hosted runners, assign runner to optional group with the required provided labelsmake create name=<name-here> labels=<label-here>
- spawn an individual runner with specified name with the required provided labelsmake create-org name=<name-here> labels=<label-here>
- spawn an individual runner with specified name in the defined group with the required provided labelsmake remove
- removes all runners running as a servicemake delete
- force deletes a runner from the servicemake clean
- removesrunners
directory
We accept contributions in the form of issues and pull requests. The runner typically requires changes across the entire system and we aim for issues in the runner to be entirely self contained and fixable here. Therefore, we will primarily handle bug issues opened in this repo and we kindly request you to create all feature and enhancement requests on the GitHub Feedback page. Read more about our guidelines here before contributing.