Skip to content

Commit 63a14ba

Browse files
addres comments
1 parent e1d1904 commit 63a14ba

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/silabs-update-csa.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ permissions:
44
contents: write
55

66
on:
7+
push:
78
schedule:
89
- cron: "0 0 * * *" # Runs once a day at midnight
910

@@ -21,16 +22,13 @@ jobs:
2122

2223
- name: Add CSA repository remote
2324
run:
24-
git remote add csa
25+
git remote add upstream
2526
https://github.com/project-chip/connectedhomeip.git
2627

27-
- name: Fetch master branch from CSA repository
28-
run: git fetch csa master
28+
- name: Update the csa branch locally
29+
run: git pull upstream master
2930

30-
- name: Checkout master branch from CSA repository
31-
run: git checkout csa/master
32-
33-
- name: Push csa::master to matter_sdk::csa
31+
- name: Push the update csa branch to the remote
3432
run: |
3533
git push origin csa
3634
env:

0 commit comments

Comments
 (0)