We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 021ba42 commit deb8ce8Copy full SHA for deb8ce8
1 file changed
.github/workflows/nightly-merge.yml
@@ -0,0 +1,26 @@
1
+name: 'Nightly Merge'
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ nightly-merge:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0 # Full clone necessary for proper merge
18
19
+ - name: Merge main into gh-pages
20
+ uses: robotology/gh-action-nightly-merge@v1.5.2
21
22
+ stable_branch: 'main'
23
+ development_branch: 'gh-pages'
24
+ allow_ff: false
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments