rebase-on-upstream.yml 326 B

12345678910111213141516
  1. name: Rebase on Upstream
  2. on:
  3. schedule:
  4. - cron: "42 12 * * *" # run every day an hour before regular build
  5. workflow_dispatch: # run manually
  6. jobs:
  7. rebase:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@master
  11. with:
  12. fetch-depth: 0
  13. - uses: yt-dlp/rebase-upstream-action@master