Bump actions/github-script from 6.4.1 to 7.0.1 #168
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: Refresh Tugboat Preview ID Cache | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
refresh_cache: | |
name: Refresh Tugboat Preview ID Cache | |
runs-on: ubuntu-latest | |
if: ${{ github.event.label.name == 'refresh-tugboat-cache' }} | |
steps: | |
- name: Refresh Preview ID | |
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | |
with: | |
path: .tugboat_preview.txt | |
key: ${{ runner.os }}-tugboat-preview-id-pr-${{ github.event.pull_request.number }} | |
- name: Cleanup temporary file | |
run: rm .tugboat_preview.txt | |
- name: Remove refresh label | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
await github.rest.issues.removeLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: ${{ github.event.pull_request.number }}, | |
name: 'refresh-tugboat-cache', | |
}); |