This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
Bump the npm-dependencies group across 1 directory with 4 updates #187
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 UI PR images | |
on: | |
pull_request: | |
types: [closed] | |
paths: | |
- ".nvmrc" | |
- "package.json" | |
- "package-lock.json" | |
- "src/*/static/**" | |
- ".github/workflows/**" | |
- ".github/scripts/**" | |
jobs: | |
purge-ghcr-images: | |
name: Cleanup PR images from ghcr.io | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleanup images | |
uses: bots-house/[email protected] | |
with: | |
owner: noaa-gsl | |
name: unified-graphics/ui | |
token: ${{ secrets.GHCR_CLEANUP_PAT }} | |
tag: ${{ github.head_ref }} | |
purge-ecr-images: | |
name: Cleanup PR images from ECR | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} # Dependabot changes aren't sent to VLab | |
environment: vlab | |
concurrency: vlab | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Cleanup image | |
run: | | |
aws ecr batch-delete-image \ | |
--repository-name rtma-vis/ui \ | |
--image-ids imageTag=${{ github.head_ref }} |