-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: investigate how work gh cli after close pr (#9445)
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
12 changes: 10 additions & 2 deletions
12
.github/workflows/delete-preview.yml → .github/workflows/cleanup-resources.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
name: Close PR delete firebase channel | ||
name: Cleanup resources after close PR | ||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
delete_firebase_channel: | ||
purge-cache: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: taiga-family/ci/actions/setup/[email protected] | ||
- run: gh cache delete ${{ env.CACHE_DIST_KEY }} | ||
continue-on-error: true | ||
|
||
delete-firebase-channel: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
|