File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 110
110
- name : Register runner (if new installation) for organization
111
111
command :
112
112
" {{ runner_dir }}/./config.sh --url {{ github_url }}/{{ github_owner | default(github_account) }} \
113
- --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended"
113
+ --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended \
114
+ {{ runner_extra_config_args }}"
114
115
args :
115
116
chdir : " {{ runner_dir }}"
116
117
become : yes
123
124
- name : Replace registered runner for repo
124
125
command :
125
126
" {{ runner_dir }}/config.sh --url {{ github_url }}/{{ github_owner | default(github_account) }}/{{ github_repo }} \
126
- --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended --replace"
127
+ --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended \
128
+ {{ runner_extra_config_args }} --replace"
127
129
args :
128
130
chdir : " {{ runner_dir }}"
129
131
become : yes
136
138
- name : Replace registered runner for organization
137
139
command :
138
140
" {{ runner_dir }}/config.sh --url {{ github_url }}/{{ github_owner | default(github_account) }} \
139
- --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended --replace"
141
+ --token {{ registration.json.token }} --name {{ runner_name }} --labels {{ runner_labels | join(',') }} --unattended \
142
+ {{ runner_extra_config_args }} --replace"
140
143
args :
141
144
chdir : " {{ runner_dir }}"
142
145
become : yes
You can’t perform that action at this time.
0 commit comments