File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ This is a copy from `defaults/main.yml`
6060``` yaml
6161---
6262# Runner user - user under which is the local runner service running
63- runner_user : " {{ lookup('env','USER') }}"
63+ runner_user : " {{ lookup('env', 'USER') }}"
6464
6565# Directory where the local runner will be installed
6666runner_dir : /opt/actions-runner
@@ -72,22 +72,25 @@ runner_version: "latest"
7272runner_state : " started"
7373
7474# If found on the server, delete already existing runner service and install it again
75- reinstall_runner : no
75+ reinstall_runner : false
7676
7777# Do not show Ansible logs which may contain sensitive data (registration token)
78- hide_sensitive_logs : yes
78+ hide_sensitive_logs : true
7979
8080# GitHub address
8181github_url : " https://github.com"
8282
8383# GitHub API
8484github_api_url : " https://api.github.com"
8585
86+ # Number of runners to list per page
87+ github_api_runners_per_page : 100
88+
8689# Personal Access Token for your GitHub account
8790access_token : " {{ lookup('env', 'PERSONAL_ACCESS_TOKEN') }}"
8891
8992# Is it the runner for organization or not?
90- runner_org : no
93+ runner_org : false
9194
9295# Labels to apply to the runner
9396runner_labels : []
You can’t perform that action at this time.
0 commit comments