Skip to content

Commit

Permalink
gha: Add workflow to purge readme image cache
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Dec 8, 2019
1 parent 739a95f commit da7c321
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/purge-readme-image-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Purge image cache

on:
push:
branches:
- master
schedule:
- cron: '4 18 * * *'

jobs:
purge:
runs-on: ubuntu-18.04
steps:

- run: |
IMAGE_LIST=$(curl -sL https://github.com/${GITHUB_REPOSITORY} | \
grep -oE '<img src="https?://camo.githubusercontent.com/[^"]+' | \
sed -e 's/<img src="//')
echo ${IMAGE_LIST} | xargs -I % curl -sX PURGE %

0 comments on commit da7c321

Please sign in to comment.