We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d41c14 commit 3366c6cCopy full SHA for 3366c6c
.github/workflows/silabs-update-csa.yaml
@@ -6,6 +6,7 @@ permissions:
6
on:
7
schedule:
8
- cron: "0 0 * * *" # Runs once a day at midnight
9
+ workflow_dispatch: # Allows manual triggering of the workflow
10
11
jobs:
12
sync:
@@ -18,6 +19,7 @@ jobs:
18
19
with:
20
repository: SiliconLabsSoftware/matter_sdk
21
ref: csa
22
+ token: ${{ secrets.WORKFLOW_TOKEN }}
23
24
- name: Add CSA repository remote
25
run:
@@ -29,6 +31,4 @@ jobs:
29
31
30
32
- name: Push the update csa branch to the remote
33
run: |
- git push origin csa
- env:
34
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ git push https://github.com/SiliconLabsSoftware/matter_sdk.git csa
0 commit comments