Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

smoke test test #7085

Closed
wants to merge 62 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
5b581f6
frontend component and script
fzhao99 Dec 13, 2023
61bec6c
backend config
fzhao99 Dec 13, 2023
e754b8d
actions
fzhao99 Dec 13, 2023
1b95fdd
rename
fzhao99 Dec 13, 2023
ea353ae
final
fzhao99 Dec 13, 2023
0573b6c
comment workflows
fzhao99 Dec 13, 2023
a087147
frontend component and script
fzhao99 Dec 13, 2023
f4e58fb
backend config
fzhao99 Dec 13, 2023
988c7e8
actions
fzhao99 Dec 13, 2023
6659490
rename
fzhao99 Dec 13, 2023
d309561
some other stuff
fzhao99 Dec 13, 2023
8b18c85
add slack alert back in
fzhao99 Dec 13, 2023
8a14470
remove slack comment
fzhao99 Dec 13, 2023
1dbb98c
move slack alert over
fzhao99 Dec 13, 2023
a33000c
dan feedback
fzhao99 Dec 14, 2023
67e9a1c
add okta call and update script config
fzhao99 Dec 15, 2023
284a458
Merge branch 'bob/7019-prod-e2e-health-check' into bob/smoke-test-test
fzhao99 Dec 15, 2023
f6938ed
change to push to prove script works
fzhao99 Dec 15, 2023
91dca0a
lint
fzhao99 Dec 15, 2023
f80ccb3
remove trailing slash
fzhao99 Dec 15, 2023
d89583a
remove trailing slash
fzhao99 Dec 15, 2023
8f287b1
remove empty var
fzhao99 Dec 15, 2023
12f74c4
remove comment
fzhao99 Dec 15, 2023
347bd14
move url to one place
fzhao99 Dec 15, 2023
72d5e40
move url to one place
fzhao99 Dec 15, 2023
6d8ecf3
use existing status check instead
fzhao99 Dec 15, 2023
2eb0fee
start merge pt 1
fzhao99 Dec 15, 2023
3ef003b
lint
fzhao99 Dec 15, 2023
b678b5b
string format and equality
fzhao99 Dec 15, 2023
2236029
string
fzhao99 Dec 15, 2023
0af5696
Merge branch 'bob/7019-prod-e2e-health-check' into bob/smoke-test-test
fzhao99 Dec 15, 2023
5703bba
kick for a fresh deploy
fzhao99 Dec 15, 2023
2655882
frontend component and script
fzhao99 Dec 13, 2023
26f7891
backend config
fzhao99 Dec 13, 2023
f749843
actions
fzhao99 Dec 13, 2023
1b5612f
rename
fzhao99 Dec 13, 2023
b984e00
some other stuff
fzhao99 Dec 13, 2023
9e25175
add slack alert back in
fzhao99 Dec 13, 2023
f1d0d6e
remove slack comment
fzhao99 Dec 13, 2023
20f99da
move slack alert over
fzhao99 Dec 13, 2023
e6757bb
dan feedback
fzhao99 Dec 14, 2023
edaf50e
add okta call and update script config
fzhao99 Dec 15, 2023
c640d3e
lint
fzhao99 Dec 15, 2023
4ee1215
remove trailing slash
fzhao99 Dec 15, 2023
87a6249
remove empty var
fzhao99 Dec 15, 2023
6db0690
remove comment
fzhao99 Dec 15, 2023
d30c568
move url to one place
fzhao99 Dec 15, 2023
03236e9
use existing status check instead
fzhao99 Dec 15, 2023
9463564
string format and equality
fzhao99 Dec 15, 2023
286ccc5
move literal to left
fzhao99 Dec 15, 2023
bc22644
lol it's friday alright
fzhao99 Dec 15, 2023
aa87bd7
add comment to document workflow
fzhao99 Dec 15, 2023
f74a96f
better comment
fzhao99 Dec 15, 2023
503b3fd
use base domain env var instead
fzhao99 Dec 15, 2023
663933a
set env var
fzhao99 Dec 15, 2023
215afe5
don't hard code node version
fzhao99 Dec 19, 2023
be2209f
add endpoint annotation
fzhao99 Jan 8, 2024
f3a3ee3
remove filter chain reference to endpoint
fzhao99 Jan 8, 2024
183d6e4
merge conflicts for new changes
fzhao99 Jan 8, 2024
38fb619
change var pass in to match new version
fzhao99 Jan 8, 2024
d1410d5
second try
fzhao99 Jan 8, 2024
a501da6
add a third argument catch
fzhao99 Jan 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add slack alert back in
fzhao99 committed Dec 14, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 8b18c85cafe4cd1beee446cf229add6103a54555
16 changes: 14 additions & 2 deletions .github/workflows/smokeTestDeployManual.yml
Original file line number Diff line number Diff line change
@@ -43,5 +43,17 @@ jobs:
uses: ./.github/actions/post-deploy-smoke-test
with:
deploy-env: ${{inputs.deploy_env}}


slack_alert:
runs-on: ubuntu-latest
if: failure()
needs: [ smoke-test-front-and-back-end ]
steps:
- uses: actions/checkout@v4
- name: Send alert to Slack
uses: ./.github/actions/slack-message
with:
username: ${{ github.actor }}
description: |
:siren-gif: Post-deploy smoke test couldn't verify that the frontend is talking to the backend. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} :siren-gif:
webhook_url: ${{ secrets.SR_ALERTS_SLACK_WEBHOOK_URL }}
user_map: $${{ secrets.SR_ALERTS_GITHUB_SLACK_MAP }}