mirror of https://github.com/cri-o/packaging.git
16 lines
444 B
YAML
16 lines
444 B
YAML
name: schedule
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 1 * * *"
|
|
jobs:
|
|
reconcile:
|
|
if: github.ref == 'refs/heads/main' && github.repository == 'cri-o/packaging'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- run: scripts/reconcile
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
OBS_PASSWORD: ${{ secrets.OBS_PASSWORD }}
|