Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gha: Add workflow to purge readme image cache
  • Loading branch information
peaceiris committed Dec 8, 2019
1 parent 6da534f commit 3514e58
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/purge-readme-image-cache.yml
@@ -0,0 +1,17 @@
name: Purge image cache

on:
push:
schedule:
- cron: '54 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 3514e58

Please sign in to comment.