Skip to content

Rebuild

Rebuild #5

Workflow file for this run

name: Rebuild
on:
schedule:
- cron: "00 2 */3 * *" # build at 2:00 UTC every third day, three hours before secureblue
workflow_dispatch: # allow manually triggering builds
jobs:
webhook:
name: Ping copr webhook
runs-on: ubuntu-latest
steps:
- name: Use curl to ping webhook
run: |
curl -X POST ${{ secrets.COPR_WEBHOOK }} > /dev/null 2>&1