Skip to content

.github/workflows/mirror.yaml #3140

.github/workflows/mirror.yaml

.github/workflows/mirror.yaml #3140

Workflow file for this run

on:
schedule:
- cron: "*/10 * * * *"
push:
branches:
- main
jobs:
mirror:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
- run: git remote add mirrored https://github.com/BlindfoldedSurgery/actions-container.git
- run: git fetch mirrored 'refs/tags/*:refs/tags/*'
- run: git push origin --tags --force