Skip to content

Commit 134d23b

Browse files
committed
chore(ci): point TechAPI references to GetTechAPI org
TechAPI was transferred from Seungpyo1007 to the GetTechAPI org. Update the submodule URL in .gitmodules and every workflow reference (checkout repository, repository-dispatch target, ls-remote URL, coverage issue repo) from Seungpyo1007/TechAPI to GetTechAPI/TechAPI. Redirects kept the old paths working; this makes them explicit.
1 parent a3abd82 commit 134d23b

10 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/bump-techapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# (covers manual runs and payload-less dispatches).
4242
SHA="${PAYLOAD_SHA:-}"
4343
if [ -z "$SHA" ]; then
44-
SHA=$(git ls-remote https://github.com/Seungpyo1007/TechAPI.git refs/heads/main | awk '{print $1}')
44+
SHA=$(git ls-remote https://github.com/GetTechAPI/TechAPI.git refs/heads/main | awk '{print $1}')
4545
fi
4646
if [ -z "$SHA" ]; then
4747
echo "::error::could not resolve TechAPI main sha"; exit 1

.github/workflows/coverage-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/checkout@v4
2121
with:
22-
repository: Seungpyo1007/TechAPI
22+
repository: GetTechAPI/TechAPI
2323
path: TechAPI
2424

2525
- uses: actions/setup-python@v5
@@ -71,5 +71,5 @@ jobs:
7171
sync_issue "${{ github.repository }}" "$SELF_TOKEN" \
7272
|| echo "::warning::TechEngine coverage issue sync failed"
7373
# TechAPI: best-effort — requires Issues:write on TECHAPI_TOKEN.
74-
sync_issue "Seungpyo1007/TechAPI" "$TECHAPI_TOKEN" \
74+
sync_issue "GetTechAPI/TechAPI" "$TECHAPI_TOKEN" \
7575
|| echo "::warning::TechAPI coverage issue sync failed — TECHAPI_TOKEN likely lacks Issues:write"

.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: actions/checkout@v4
2828
with:
29-
repository: Seungpyo1007/TechAPI
29+
repository: GetTechAPI/TechAPI
3030
path: TechAPI
3131

3232
- uses: actions/setup-python@v5

.github/workflows/notify-techapi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: notify-techapi
55
# (triggered by this repository_dispatch); TechEngine only fires the signal.
66
#
77
# No loop: TechAPI's bump commit lands in TechAPI, never pushed back here.
8-
# Requires TECHAPI_TOKEN (Contents: write on Seungpyo1007/TechAPI) — already set.
8+
# Requires TECHAPI_TOKEN (Contents: write on GetTechAPI/TechAPI) — already set.
99
on:
1010
push:
1111
branches: [main]
@@ -27,7 +27,7 @@ jobs:
2727
uses: peter-evans/repository-dispatch@v3
2828
with:
2929
token: ${{ secrets.TECHAPI_TOKEN }}
30-
repository: Seungpyo1007/TechAPI
30+
repository: GetTechAPI/TechAPI
3131
event-type: engine-updated
3232
client-payload: |
3333
{"sha": "${{ github.sha }}", "ref": "${{ github.ref }}"}

.github/workflows/refresh-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/checkout@v4
2525
with:
26-
repository: Seungpyo1007/TechAPI
26+
repository: GetTechAPI/TechAPI
2727
path: TechAPI
2828

2929
- uses: actions/setup-python@v5

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- uses: actions/checkout@v4
1515
with:
16-
repository: Seungpyo1007/TechAPI
16+
repository: GetTechAPI/TechAPI
1717
path: TechAPI
1818

1919
- uses: actions/setup-python@v5

.github/workflows/validate-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: actions/checkout@v4
2626
with:
27-
repository: Seungpyo1007/TechAPI
27+
repository: GetTechAPI/TechAPI
2828
ref: ${{ inputs.data-ref }}
2929
path: TechAPI
3030
- uses: actions/setup-python@v5

.github/workflows/weekly-ingest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# fall back to the default token for read-only test runs.
4040
- uses: actions/checkout@v4
4141
with:
42-
repository: Seungpyo1007/TechAPI
42+
repository: GetTechAPI/TechAPI
4343
path: TechAPI
4444
token: ${{ secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}
4545

.github/workflows/weekly-refresh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Checkout TechAPI
4848
uses: actions/checkout@v4
4949
with:
50-
repository: Seungpyo1007/TechAPI
50+
repository: GetTechAPI/TechAPI
5151
path: techapi
5252
token: ${{ secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}
5353

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "TechAPI"]
22
path = TechAPI
3-
url = https://github.com/Seungpyo1007/TechAPI.git
3+
url = https://github.com/GetTechAPI/TechAPI.git
44
branch = main

0 commit comments

Comments
 (0)