Bump oven-sh/setup-bun from 830e319e28724678162e88b9145a9b43f22f1a8e to e900e6b10896cd3a94ded8f5d6094c6547532020 #7055
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@1b05615854632b887b69ae1be8cbefe72d3ae423 | |
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@f105ef0cdb3b102a020be1767fcc8a974898b7c6 | |
with: | |
credentials_json: ${{ secrets.GCP_SA_KEY }} | |
- name: Setup Cloud SDK | |
uses: google-github-actions/setup-gcloud@e30db14379863a8c79331b04a9969f4c1e225e0b | |
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 }} |