We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d1904 commit 63a14baCopy full SHA for 63a14ba
.github/workflows/silabs-update-csa.yaml
@@ -4,6 +4,7 @@ permissions:
4
contents: write
5
6
on:
7
+ push:
8
schedule:
9
- cron: "0 0 * * *" # Runs once a day at midnight
10
@@ -21,16 +22,13 @@ jobs:
21
22
23
- name: Add CSA repository remote
24
run:
- git remote add csa
25
+ git remote add upstream
26
https://github.com/project-chip/connectedhomeip.git
27
- - name: Fetch master branch from CSA repository
28
- run: git fetch csa master
+ - name: Update the csa branch locally
29
+ run: git pull upstream master
30
- - name: Checkout master branch from CSA repository
31
- run: git checkout csa/master
32
-
33
- - name: Push csa::master to matter_sdk::csa
+ - name: Push the update csa branch to the remote
34
run: |
35
git push origin csa
36
env:
0 commit comments