Rebase Upstream #196
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
# Based on: | |
# - https://github.com/marketplace/actions/rebase-upstream | |
# - https://github.com/imba-tjd/rebase-upstream-action | |
name: Rebase Upstream | |
on: | |
schedule: | |
- cron: "0 0 * * *" # run everyday | |
workflow_dispatch: # run manually | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 10 # greater than the number of commits you made | |
- uses: ozars/rebase-upstream-action@master |