Skip to content
This repository was archived by the owner on Dec 24, 2025. It is now read-only.

Docker Image CI

Docker Image CI #27

Workflow file for this run

name: Docker Image CI
on:
workflow_dispatch:
schedule:
- cron: 29 22 03 07 *
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TOKEN }}
- run: |
git config --global user.name "$GITHUB_REPOSITORY_OWNER"
git config --global user.email "$SEC_EMAIL"
sed -i "s/- cron: .*\\*\$/- cron: $(date -u -d "$(shuf -n 1 -i 864000-4320000) sec" '+%M %H %d %m *')/" .github/workflows/docker-image.yml
git add .github/workflows/docker-image.yml
git commit -m "Update the status of the quay.io repository - $(date)"
git push
env:
SEC_EMAIL: ${{ secrets.EMAIL }}