feat(kit): Tooltip
add DI options
#48
Workflow file for this run
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
name: Cleanup resources after close PR | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
purge-cache: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
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: | |
- uses: actions/[email protected] | |
- uses: w9jds/[email protected] | |
continue-on-error: true | |
with: | |
args: hosting:channel:delete pr${{ github.event.number }}-${{ github.head_ref }} --force | |
env: | |
GCP_SA_KEY: ${{ secrets.FIREBASE_TAIGA_PREVIEWS_SA }} | |
PROJECT_ID: taiga-previews |