Add nightly #1
Workflow file for this run
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: Daily Merge from upstream/daily-snapshot | ||
on: | ||
schedule: | ||
- cron: '*/5 0 * * *' | ||
jobs: | ||
merge-upstream: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: upstream # set the branch to merge to | ||
fetch-depth: 0 | ||
- name: Merge Upstream | ||
uses: exions/merge-upstream@v1 | ||
with: | ||
upstream: wolfssl/woflssl # set the upstream repo | ||
upstream-branch: daily-snapshot # set the upstream branch to merge from | ||
branch: release/daily # set the branch to merge to | ||