Skip to content

[ DEVOPS-1733] - Slack Report Test Case Test #49

[ DEVOPS-1733] - Slack Report Test Case Test

[ DEVOPS-1733] - Slack Report Test Case Test #49

---
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"
jobs:
test-report-start:
name: Test Slack report start
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-workflow-start
slack-channel: devops-alerts-test
event: 'start'
commit-sha: ${{ github.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:
name: Test Slack report
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-workflow-success
slack-channel: devops-alerts-test
event: 'success'
commit-sha: ${{ github.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-failure:
name: Test Slack report failure
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-workflow-failure
slack-channel: devops-alerts-test
event: 'failure'
commit-sha: ${{ github.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:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Slack report with DB migration true on main
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: main
slack-channel: devops-alerts-test
event: 'success'
commit-sha: ${{ github.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: Slack report with DB migration false on main
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: main
slack-channel: devops-alerts-test
event: 'failure'
commit-sha: ${{ github.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: Slack report with DB migration true on test branch
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-branch
slack-channel: devops-alerts-test
event: 'failure'
commit-sha: ${{ github.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: Slack report with DB migration false on test branch
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-branch
slack-channel: devops-alerts-test
event: 'success'
commit-sha: ${{ github.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: Slack report with DB migration value "" on main
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: main
slack-channel: devops-alerts-test
event: 'start'
commit-sha: ${{ github.sha }}
db_migration_detected: ""
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
- name: Slack report with DB migration value "" on test tag
uses: ./report-deployment-status-to-slack
with:
project: Server
environment: US QA Cloud
tag: test-tag
slack-channel: devops-alerts-test
event: 'success'
commit-sha: ${{ github.sha }}
db_migration_detected: ""
url: https://github.com/bitwarden/gh-actions/actions/runs/${{ github.run_id }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}