Skip to content

Commit 4fd682f

Browse files
avidovicmpolawar
andauthored
D-41952 replace runner#register with runner#edit (#102)
* D-41952 replace runner#register with runner#edit * D-41952 update versions.json * update xlcli source link * Update versions.json --------- Co-authored-by: mpolawar <37649735+mpolawar@users.noreply.github.com>
1 parent 31af28f commit 4fd682f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/config/versions.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@
1818
"release/25.3.x": {
1919
"releaseVersion": "25.3.0",
2020
"xlCliVersion": "25.3.0-beta.657"
21+
},
22+
"release/26.1.x": {
23+
"releaseVersion": "26.1.0-beta.127",
24+
"xlCliVersion": "26.1.0-beta.1213"
2125
}
22-
}
26+
}

.github/workflows/Check-official-templates.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Download and Install xl-cli
5252
run: |
53-
wget https://dist.xebialabs.com/public/xl-cli/$xlcli_version/linux-amd64//xl -O xl1
53+
wget https://dist.xebialabs.com/public/xl-cli/$xlcli_version/linux-amd64/xl -O xl1
5454
chmod 755 xl1
5555
./xl1 version
5656

DigitalAIOfficial/Workflows/Release runner/Workflow_Digital.ai Release runner additional install in Kubernetes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
token_note = releaseVariables["runnerName"] + "-" + uid
5656
5757
token_form = CreatePersonalAccessTokenForm(token_note)
58-
global_permissions = Set.of("runner#registration")
58+
global_permissions = Set.of("runner#edit")
5959
token_form.setGlobalPermissions(global_permissions)
6060
6161
response = personalAccessTokenApi.createPersonalAccessToken(token_form)

DigitalAIOfficial/Workflows/Release runner/Workflow_Digital.ai Release runner install in Kubernetes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
token_note = "runner-" + uid
4141
4242
token_form = CreatePersonalAccessTokenForm(token_note)
43-
global_permissions = Set.of("runner#registration")
43+
global_permissions = Set.of("runner#edit")
4444
token_form.setGlobalPermissions(global_permissions)
4545
4646
response = personalAccessTokenApi.createPersonalAccessToken(token_form)

DigitalAIOfficial/Workflows/Release runner/Workflow_Digital.ai Release runner install with Digital.ai Cloud Connector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ spec:
253253
token_note = releaseVariables["runnerName"] + "-" + uid
254254
255255
token_form = CreatePersonalAccessTokenForm(token_note)
256-
global_permissions = Set.of("runner#registration")
256+
global_permissions = Set.of("runner#edit")
257257
token_form.setGlobalPermissions(global_permissions)
258258
259259
response = personalAccessTokenApi.createPersonalAccessToken(token_form)

0 commit comments

Comments
 (0)