File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ runner_labels: []
41
41
# GitHub repository where releases will be downloaded from
42
42
runner_download_repository : " actions/runner"
43
43
44
+ # extra arguments to pass to `config.sh`
45
+ runner_extra_config_args : " "
46
+
44
47
# Custom service name when usign Github Enterprise server
45
48
# service_name: actions.runner._services.{{ runner_name }}.service
46
49
Original file line number Diff line number Diff line change 77
77
78
78
- name : Register runner (if new installation) for repo
79
79
command : " {{ runner_dir }}/./config.sh --url {{ github_url }}/{{ github_owner | default(github_account) }}/{{ github_repo }} \
80
- --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended"
80
+ --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended \
81
+ {{ runner_extra_config_args }}"
81
82
args :
82
83
chdir : " {{ runner_dir }}"
83
84
become : yes
You can’t perform that action at this time.
0 commit comments