chore(deps): update dependency @typescript-eslint/parser to v8.18.2 #402
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 Fastly | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
Cleanup-Fastly-Service: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up GitHub CLI | |
run: echo ${{ secrets.GITHUB_TOKEN }} | gh auth login --with-token | |
- name: Download Fastly CLI | |
run: mkdir ~/.bin && curl -L https://github.com/fastly/cli/releases/download/v0.31.0/fastly_v0.31.0_linux-386.tar.gz | tar zxv | |
- name: Delete Stale Services | |
run: | | |
repo=$(echo "${{ github.repository }}" | sed -e "s;.*/;;") | |
./fastly service list -t ${{ secrets.FASTLY_AUTH }} | grep -E "^$repo"- | while read -r line | |
do | |
read -ra parts <<< "$line" | |
name=${parts[0]} | |
id=${parts[1]} | |
version=${parts[3]} | |
branch=$(echo ${name} | sed -e s/^$repo-//) | |
if ! gh api repos/{owner}/{repo}/branches/$branch --silent; then | |
echo "no matching branch for $name – '$id' should be deleted"; | |
./fastly service-version deactivate -t ${{ secrets.FASTLY_AUTH }} -s $id --version active | |
./fastly service delete -t ${{ secrets.FASTLY_AUTH }} -s $id | |
fi | |
done |