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 51
51
- name : Set complete GitHub url for repo runner
52
52
ansible.builtin.set_fact :
53
53
github_full_url : " {{ github_url }}/{{ github_owner | default(github_account) }}/{{ github_repo }}"
54
- when : not runner_org and not runner_enterprise
54
+ when : not runner_org and not github_enterprise
55
55
56
56
- name : Set complete GitHub url for org runner
57
57
ansible.builtin.set_fact :
58
58
github_full_url : " {{ github_url }}/{{ github_owner | default(github_account) }}"
59
- when : runner_org | bool and not runner_enterprise
59
+ when : runner_org | bool and not github_enterprise
60
60
61
61
- name : Set complete GitHub url for enterprise runner
62
62
ansible.builtin.set_fact :
63
63
github_full_url : " {{ github_url }}/enterprises/{{ github_enterprise }}"
64
- when : runner_enterprise
64
+ when : github_enterprise
65
65
66
66
- name : Register runner
67
67
environment :
You can’t perform that action at this time.
0 commit comments