forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ports/psoc6: PSoC6 Infineon fork patch.
Signed-off-by: jaenrig-ifx <enriquezgarcia.external@infineon.com>
- Loading branch information
1 parent
fb8bd1d
commit 86fc3fb
Showing
2 changed files
with
108 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
name: Sync Upstream | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 */1 * *' # daily 00:00 | ||
workflow_dispatch: # on button click | ||
|
||
jobs: | ||
synch_master: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout target repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
|
||
- name: Sync upstream changes | ||
id: sync | ||
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 | ||
with: | ||
target_sync_branch: master | ||
target_repo_token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
upstream_sync_branch: master | ||
upstream_sync_repo: micropython/micropython | ||
git_config_pull_rebase: true | ||
|
||
|
||
- name: New commits found | ||
if: steps.sync.outputs.has_new_commits == 'true' | ||
run: echo "New commits were found to sync." | ||
|
||
- name: No new commits | ||
if: steps.sync.outputs.has_new_commits == 'false' | ||
run: echo "There were no new commits." | ||
|
||
- name: Show value of 'has_new_commits' | ||
run: echo ${{ steps.sync.outputs.has_new_commits }} | ||
|
||
synch_port_psoc6: | ||
runs-on: ubuntu-latest | ||
needs: synch_master | ||
|
||
steps: | ||
- name: Checkout target repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ports-psoc6-main | ||
token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
|
||
- name: Sync upstream changes | ||
id: sync | ||
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 | ||
with: | ||
target_sync_branch: ports-psoc6-main | ||
target_repo_token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
upstream_sync_branch: master | ||
upstream_sync_repo: micropython/micropython | ||
git_config_pull_rebase: true | ||
target_branch_push_args: '--force' | ||
|
||
- name: New commits found | ||
if: steps.sync.outputs.has_new_commits == 'true' | ||
run: echo "New commits were found to sync." | ||
|
||
- name: No new commits | ||
if: steps.sync.outputs.has_new_commits == 'false' | ||
run: echo "There were no new commits." | ||
|
||
- name: Show value of 'has_new_commits' | ||
run: echo ${{ steps.sync.outputs.has_new_commits }} | ||
|
||
|
||
synch_port_psoc6_ifx: | ||
runs-on: ubuntu-latest | ||
needs: synch_port_psoc6 | ||
|
||
steps: | ||
- name: Checkout target repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ports-psoc6-ifx | ||
token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
|
||
- name: Sync upstream changes | ||
id: sync | ||
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 | ||
with: | ||
target_sync_branch: ports-psoc6-ifx | ||
target_repo_token: ${{ secrets.GH_ACT_SYNCH_UPSTREAM }} | ||
upstream_sync_branch: ports-psoc6-main | ||
upstream_sync_repo: infineon/micropython | ||
git_config_pull_rebase: true | ||
target_branch_push_args: '--force' | ||
|
||
|
||
- name: New commits found | ||
if: steps.sync.outputs.has_new_commits == 'true' | ||
run: echo "New commits were found to sync." | ||
|
||
- name: No new commits | ||
if: steps.sync.outputs.has_new_commits == 'false' | ||
run: echo "There were no new commits." | ||
|
||
- name: Show value of 'has_new_commits' | ||
run: echo ${{ steps.sync.outputs.has_new_commits }} |
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