Skip to content

Commit d356218

Browse files
committed
[PRM-392] Updating the run-name workflow values
1 parent 362d378 commit d356218

File tree

9 files changed

+6
-12
lines changed

9 files changed

+6
-12
lines changed

.github/workflows/cron-daily-health-check.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: 'Z-CRON: Daily health check'
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }}"
4-
53
on:
64
schedule:
75
- cron: 30 4 * * 1-5

.github/workflows/cron-tear-down-sandbox.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: 'Z-CRON: Tear down - Sandbox'
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }}"
4-
53
on:
64
schedule:
75
- cron: 59 17 * * 1-5 # utc time

.github/workflows/cron-tear-down-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: 'Z-CRON: Tear down - Test'
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }}"
4-
53
on:
64
schedule:
75
- cron: 59 17 * * 1-5 # utc time

.github/workflows/deploy-pre-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Deploy - Pre-prod"
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.branch_or_tag }}"
3+
run-name: "${{ github.event.inputs.branch_or_tag }}"
44

55
on:
66
workflow_dispatch:

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Deploy - Prod"
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.git_tag }}"
3+
run-name: "${{ github.event.inputs.git_tag }}"
44

55
on:
66
workflow_dispatch:

.github/workflows/deploy-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Deploy - Sandbox"
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.git_ref }} | ${{ github.event.inputs.sandbox_name }}"
3+
run-name: "${{ github.event.inputs.git_ref }} | ${{ github.event.inputs.sandbox_name }}"
44

55
on:
66
workflow_dispatch:

.github/workflows/deploy-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Deploy - Test"
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.git_ref }}"
3+
run-name: "${{ github.event.inputs.git_ref }}"
44

55
on:
66
workflow_dispatch:

.github/workflows/tear-down-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Tear down - Sandbox/Test"
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.git_ref }} | ${{ github.event.inputs.sandbox_name }} | ${{ github.event.inputs.environment }}"
3+
run-name: "${{ github.event.inputs.git_ref }} | ${{ github.event.inputs.sandbox_name }} | ${{ github.event.inputs.environment }}"
44

55
on:
66
workflow_dispatch:

.github/workflows/tool-rename-git-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 'Tool: Rename Git Tag'
22

3-
run-name: "${{ format('yyyy-MM-dd', github.event.timestamp) }} | ${{ github.actor }} | ${{ github.event.inputs.old_tag }} -> ${{ github.event.inputs.new_tag }}"
3+
run-name: "${{ github.event.inputs.old_tag }} -> ${{ github.event.inputs.new_tag }}"
44

55
on:
66
workflow_dispatch:

0 commit comments

Comments
 (0)