Skip to content

Commit 9d5191d

Browse files
Fix service name length
1 parent 4f4a25d commit 9d5191d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tasks/collect_info_org.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
- name: Build service name
3939
set_fact:
40-
runner_service: "actions.runner.{{ (github_owner | default(github_account))[:45] }}.{{ runner_name }}.service"
40+
runner_service: "actions.runner.{{ (github_owner | default(github_account))[:45] }}.{{ runner_name[:11] }}.service"
4141
when: service_name is not defined
4242
tags:
4343
- install

tasks/collect_info_repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
- name: Build service name
4646
set_fact:
47-
runner_service: "actions.runner.{{ svc_name[:45] }}.{{ runner_name }}.service"
47+
runner_service: "actions.runner.{{ svc_name[:45] }}.{{ runner_name[:11] }}.service"
4848
when: service_name is not defined
4949
tags:
5050
- install

0 commit comments

Comments
 (0)