Rebase on Upstream #791
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: Rebase on Upstream | |
on: | |
schedule: | |
- cron: "42 12 * * *" # run every day an hour before regular build | |
workflow_dispatch: # run manually | |
jobs: | |
rebase: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- uses: yt-dlp/rebase-upstream-action@master |