Skip to content

Commit 36c9d31

Browse files
committed
test-no-fork
1 parent 550a32a commit 36c9d31

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

.github/workflows/test-all.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ on:
99
- main
1010

1111
jobs:
12+
test-no-fork:
13+
uses: ./.github/workflows/validation-proxy.yml
14+
needs: []
15+
secrets: inherit
16+
with:
17+
name: "test-no-fork"
18+
repo_name: "prototype-test/dist-repo-use-branch_test-no-fork"
19+
upstream_dist_path: "test/test-no-fork"
1220
test1:
1321
uses: ./.github/workflows/validation-proxy.yml
1422
needs: []

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
required: true
99
type: choice
1010
options:
11+
- test-no-fork
1112
- test1
1213
- test2
1314
- test3
@@ -43,6 +44,7 @@ jobs:
4344
run: |
4445
# 定义映射关系
4546
declare -A nameToRepoMap=(
47+
["test-no-fork"]="prototype-test/dist-repo-use-branch_test-no-fork"
4648
["test1"]="prototype-test/dist-repo-use-branch_test1"
4749
["test2"]="prototype-test/dist-repo-use-branch_test2"
4850
["test3"]="prototype-test/dist-repo-use-branch_test3"
@@ -68,6 +70,7 @@ jobs:
6870
)
6971
7072
declare -A nameToPathMap=(
73+
["test-no-fork"]="test/test-no-fork"
7174
["test1"]="test/test1"
7275
["test2"]="test/test2"
7376
["test3"]="test/test3"

test/test-no-fork/.github/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello test-no-fork
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4

test/test-no-fork/src/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)