Bump the storybook group with 11 updates #7279
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
# This workflow removes any assets created for manual QA testing | |
# from the GCP bucket once a pull request is closed. | |
name: Clean up PR assets | |
on: | |
pull_request: | |
types: [closed] | |
permissions: | |
contents: read | |
jobs: | |
remove-pr: | |
name: Cleanup storage | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
if: > | |
github.event.pull_request.draft == false && | |
github.event.pull_request.head.repo.fork == false && | |
github.event.pull_request.user.login != 'dependabot[bot]' | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c | |
with: | |
disable-file-monitoring: true | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
cloudresourcemanager.googleapis.com:443 | |
dl.google.com:443 | |
oauth2.googleapis.com:443 | |
storage.googleapis.com:443 | |
raw.githubusercontent.com:443 | |
- name: Authenticate | |
uses: google-github-actions/auth@71fee32a0bb7e97b4d33d548e7d957010649d8fa | |
with: | |
credentials_json: ${{ secrets.GCP_SA_KEY }} | |
- name: Setup Cloud SDK | |
uses: google-github-actions/setup-gcloud@98ddc00a17442e89a24bbf282954a3b65ce6d200 | |
with: | |
project_id: ${{ secrets.GCP_PROJECT_ID }} | |
- name: Prune PR files | |
run: gsutil rm -rf gs://web-stories-wp-github-artifacts/refs/pull/${{ github.event.pull_request.number }} |