Skip to content

Commit e8bf4f0

Browse files
fix varcheck again
1 parent e45c1d4 commit e8bf4f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/install_runner.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@
5151
- name: Set complete GitHub url for repo runner
5252
ansible.builtin.set_fact:
5353
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
5555

5656
- name: Set complete GitHub url for org runner
5757
ansible.builtin.set_fact:
5858
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
6060

6161
- name: Set complete GitHub url for enterprise runner
6262
ansible.builtin.set_fact:
6363
github_full_url: "{{ github_url }}/enterprises/{{ github_enterprise }}"
64-
when: runner_enterprise
64+
when: github_enterprise
6565

6666
- name: Register runner
6767
environment:

0 commit comments

Comments
 (0)