You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove the concept of "undeployment" as a part of the PR deployment lifecycle (github#23731)
* Update remove-stale-staging-resources workflow to completely replace undeploy workflow
* Delete the staging-undeploy-pr workflow file
* Delete all undeployment scripts and logic
* Remove all references to the automated-block-deploy label used for undeployment
* Simplify staging cross-workflow concurrency needs
Copy file name to clipboardExpand all lines: .github/workflows/staging-deploy-pr.yml
+5-63Lines changed: 5 additions & 63 deletions
Original file line number
Diff line number
Diff line change
@@ -198,68 +198,12 @@ jobs:
198
198
color: failure
199
199
text: Staging build failed for PR ${{ needs.pr-metadata.outputs.url }} at commit ${{ needs.pr-metadata.outputs.head_sha }}. See ${{ env.BUILD_ACTIONS_RUN_LOG }}. This run was ${{ env.ACTIONS_RUN_LOG }}.
200
200
201
-
check-pr-before-prepare:
202
-
needs: pr-metadata
203
-
if: >-
204
-
${{
205
-
needs.pr-metadata.outputs.number != '0' &&
206
-
github.event.workflow_run.conclusion == 'success'
207
-
}}
208
-
runs-on: ubuntu-latest
209
-
# This timeout should match or exceed the value of the timeout for Undeploy
210
-
timeout-minutes: 5
211
-
# This interrupts Build, Deploy, and pre-write Undeploy workflow runs in
0 commit comments