Skip to content

Revert "oxipng 9.1.2" #1082

Revert "oxipng 9.1.2"

Revert "oxipng 9.1.2" #1082

Workflow file for this run

name: livecheck
on:
push:
pull_request:
schedule:
- cron: 34 5 * * *
workflow_dispatch:
inputs:
retry:
description: 'Retry attempt'
required: true
type: number
jobs:
livecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3'
bundler-cache: true
- env:
RETRY: ${{ inputs.retry }}
RETRIES: 10
GITHUB_TOKEN: ${{ secrets.RETRY_TOKEN }}
run: |
if ! bundle exec script/livecheck; then
exit_code=$?
if (( $exit_code == 2 )) && (( ${RETRY:-0} < $RETRIES )); then
sleep 300
gh workflow run livecheck --repo $GITHUB_REPOSITORY --ref $GITHUB_REF_NAME -f retry=$(( $RETRY + 1 ))
else
exit $exit_code
fi
fi