-
Notifications
You must be signed in to change notification settings - Fork 12
125 lines (114 loc) · 4.82 KB
/
test-report-deployment-status-to-slack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Test report-deployment-status-to-slack
on:
pull_request:
paths:
- "report-deployment-status-to-slack/**"
- ".github/workflows/test-report-deployment-status-to-slack.yml"
env:
TEST_REPORT_PROJECT: Server
TEST_REPORT_COMMIT_SHA: "50f7fa03dbc0f18a641206ab1a92fb11a1131572" # Use a valid commit in Server (TEST_REPORT_PROJECT) to validate the links
jobs:
test-report-start:
name: Test Slack report
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Start
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: EU-QA Cloud
slack-channel: bre-alerts-test
tag: test-workflow-start
event: 'start'
commit-sha: $TEST_REPORT_COMMIT_SHA
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Success
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: US-QA Cloud
slack-channel: bre-alerts-test
tag: test-workflow-success
event: 'success'
commit-sha: $TEST_REPORT_COMMIT_SHA
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Failure
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: US-QA Cloud
slack-channel: bre-alerts-test
tag: test-workflow-failure
event: 'failure'
commit-sha: $TEST_REPORT_COMMIT_SHA
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: No Changes
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: EU-QA Cloud
slack-channel: bre-alerts-test
tag: test-workflow-failure
event: 'no-changes'
commit-sha: $TEST_REPORT_COMMIT_SHA
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
test-report-db-migration:
name: Test Slack report with different DB migration scenerios
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: With DB migration true on main
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: EU-QA Cloud
slack-channel: bre-alerts-test
tag: main
event: 'success'
commit-sha: $TEST_REPORT_COMMIT_SHA
db_migration_detected: true
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: With DB migration false on main
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: US-QA Cloud
slack-channel: bre-alerts-test
tag: main
event: 'failure'
commit-sha: $TEST_REPORT_COMMIT_SHA
db_migration_detected: false
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: With DB migration true on test branch
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: EU-QA Cloud
slack-channel: bre-alerts-test
tag: test-branch-failure
event: 'failure'
commit-sha: $TEST_REPORT_COMMIT_SHA
db_migration_detected: false
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: With DB migration false on test branch
uses: ./report-deployment-status-to-slack
with:
project: $TEST_REPORT_PROJECT
environment: US-QA Cloud
slack-channel: bre-alerts-test
tag: test-branch-success
event: 'success'
commit-sha: $TEST_REPORT_COMMIT_SHA
db_migration_detected: true
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}