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 Sync CSA branch sync | |
permissions: | |
contents: write | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" # Runs once a day at midnight | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout matter_sdk::csa branch | |
uses: actions/checkout@v2 | |
with: | |
repository: SiliconLabsSoftware/matter_sdk | |
ref: csa | |
- name: Add CSA repository remote | |
run: | |
git remote add csa | |
https://github.com/project-chip/connectedhomeip.git | |
- name: Fetch master branch from CSA repository | |
run: git fetch csa master | |
- name: Checkout master branch from CSA repository | |
run: git checkout csa/master | |
- name: Push csa::master to matter_sdk::csa | |
run: | | |
git push origin csa | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |