Scheduled Merge Remote Action #1357
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: Scheduled Merge Remote Action | |
on: | |
schedule: | |
- cron: "17 11 * * *" | |
# scheduled for At 12:17 | |
jobs: | |
merge-upstream: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: master # set the branch to merge to | |
fetch-depth: 0 | |
- name: Merge Upstream | |
uses: exions/merge-upstream@v1 | |
with: | |
upstream: googlesamples/mlkit # set the upstream repo | |
upstream-branch: master # set the upstream branch to merge from | |
branch: master # set the branch to merge to |