Rebuild #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |