Skip to content

Commit 00fc5b0

Browse files
committed
Merge branch 'feature/template-docusaurus'
2 parents 026e8e2 + 41a27ec commit 00fc5b0

File tree

3 files changed

+46
-46
lines changed

3 files changed

+46
-46
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
name: Create Release
77

88
jobs:
9-
generate-changelog:
10-
name: Generate Changelog
9+
publish:
10+
name: Publish Release
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout

.github/workflows/sub-module.yml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
on:
2-
push:
3-
branches: ['master']
4-
workflow_dispatch:
5-
6-
name: Sync Submodule
7-
8-
env:
9-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10-
11-
jobs:
12-
sync-submodule:
13-
name: Generate Changelog
14-
runs-on: ubuntu-latest
15-
steps:
16-
- name: Checkout
17-
uses: actions/checkout@v3
18-
19-
- name: Pull all submodule
20-
run: git submodule update --init --recursive
21-
22-
- name: Setup Node.js
23-
uses: actions/setup-node@v2
24-
with:
25-
node-version: "16"
26-
27-
- name: Setup Git
28-
run: |
29-
git config user.name '${{secrets.MAINTAINER_NAME}}'
30-
git config user.email '${{secrets.MAINTAINER_EMAIL}}'
31-
32-
- name: Sync submodule
33-
run: |
34-
git submodule update --remote --merge
1+
# on:
2+
# push:
3+
# branches: ['master']
4+
# workflow_dispatch:
5+
6+
# name: Sync Submodule
7+
8+
# env:
9+
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
11+
# jobs:
12+
# sync-submodule:
13+
# name: Sync Submodule
14+
# runs-on: ubuntu-latest
15+
# steps:
16+
# - name: Checkout
17+
# uses: actions/checkout@v3
18+
19+
# - name: Pull all submodule
20+
# run: git submodule update --init --recursive
21+
22+
# - name: Setup Node.js
23+
# uses: actions/setup-node@v2
24+
# with:
25+
# node-version: "16"
26+
27+
# - name: Setup Git
28+
# run: |
29+
# git config user.name '${{secrets.MAINTAINER_NAME}}'
30+
# git config user.email '${{secrets.MAINTAINER_EMAIL}}'
31+
32+
# - name: Sync submodule
33+
# run: |
34+
# git submodule update --remote --merge
3535

36-
- name: Create pull request
37-
run: |
38-
git add .
39-
git checkout -b sync-submodule
40-
git config pull.rebase false
41-
git pull origin sync-submodule
42-
git push --set-upstream origin sync-submodule
43-
gh pr create --title "Sync submodule" --body "Sync submodule" --base master --head sync-submodule --repo ${{ github.repository }}
36+
# - name: Create pull request
37+
# run: |
38+
# git add .
39+
# git checkout -b sync-submodule
40+
# git config pull.rebase false
41+
# git pull origin sync-submodule
42+
# git push --set-upstream origin sync-submodule
43+
# gh pr create --title "Sync submodule" --body "Sync submodule" --base master --head sync-submodule --repo ${{ github.repository }}
4444

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
name: Test Release
77

88
jobs:
9-
generate-changelog:
10-
name: Generate Changelog
9+
test-release:
10+
name: Test Release
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout

0 commit comments

Comments
 (0)