We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb40f27 commit b40d75eCopy full SHA for b40d75e
.github/workflows/repo-sync.yml
@@ -0,0 +1,25 @@
1
+name: Sync with foundries repo
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ - devel
7
+ - next
8
+
9
+jobs:
10
+ sync:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
14
+ - name: Checkout source repository
15
+ uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0
18
19
+ - name: Sync repos
20
+ uses: foundriesio/mirror-action@master
21
22
+ REMOTE: "https://source.foundries.io/factories/arduino/meta-partner-arduino.git"
23
+ GIT_ACCESS_TOKEN: ${{ secrets.FOUNDRIES_ACCESS_TOKEN }}
24
+ PUSH_ALL_REFS: "false"
25
0 commit comments