File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
- name : Set complete API url for repo runner
6
6
ansible.builtin.set_fact :
7
7
github_full_api_url : " {{ github_api_url }}/repos/{{ github_owner | default(github_account) }}/{{ github_repo }}/actions/runners"
8
- when : not runner_org and not runner_enterprise
8
+ when : not runner_org and not github_enterprise
9
9
10
10
- name : Set complete API url for org runner
11
11
ansible.builtin.set_fact :
12
12
github_full_api_url : " {{ github_api_url }}/orgs/{{ github_owner | default(github_account) }}/actions/runners"
13
- when : runner_org | bool and not runner_enterprise
13
+ when : runner_org | bool and not github_enterprise
14
14
15
15
- name : Set complete API url for enterprise runner
16
16
ansible.builtin.set_fact :
17
17
github_full_api_url : " {{ github_api_url }}/enterprises/{{ github_enterprise }}/actions/runners"
18
- when : runner_enterprise
18
+ when : github_enterprise
19
19
20
20
- name : Get registration token (RUN ONCE)
21
21
ansible.builtin.uri :
You can’t perform that action at this time.
0 commit comments