Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bump-techapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# (covers manual runs and payload-less dispatches).
SHA="${PAYLOAD_SHA:-}"
if [ -z "$SHA" ]; then
SHA=$(git ls-remote https://github.com/Seungpyo1007/TechAPI.git refs/heads/main | awk '{print $1}')
SHA=$(git ls-remote https://github.com/GetTechAPI/TechAPI.git refs/heads/main | awk '{print $1}')
fi
if [ -z "$SHA" ]; then
echo "::error::could not resolve TechAPI main sha"; exit 1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
Expand Down Expand Up @@ -71,5 +71,5 @@ jobs:
sync_issue "${{ github.repository }}" "$SELF_TOKEN" \
|| echo "::warning::TechEngine coverage issue sync failed"
# TechAPI: best-effort — requires Issues:write on TECHAPI_TOKEN.
sync_issue "Seungpyo1007/TechAPI" "$TECHAPI_TOKEN" \
sync_issue "GetTechAPI/TechAPI" "$TECHAPI_TOKEN" \
|| echo "::warning::TechAPI coverage issue sync failed — TECHAPI_TOKEN likely lacks Issues:write"
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/notify-techapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: notify-techapi
# (triggered by this repository_dispatch); TechEngine only fires the signal.
#
# No loop: TechAPI's bump commit lands in TechAPI, never pushed back here.
# Requires TECHAPI_TOKEN (Contents: write on Seungpyo1007/TechAPI) — already set.
# Requires TECHAPI_TOKEN (Contents: write on GetTechAPI/TechAPI) — already set.
on:
push:
branches: [main]
Expand All @@ -27,7 +27,7 @@ jobs:
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.TECHAPI_TOKEN }}
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
event-type: engine-updated
client-payload: |
{"sha": "${{ github.sha }}", "ref": "${{ github.ref }}"}
2 changes: 1 addition & 1 deletion .github/workflows/refresh-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: TechAPI

- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
ref: ${{ inputs.data-ref }}
path: TechAPI
- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# fall back to the default token for read-only test runs.
- uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: TechAPI
token: ${{ secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Checkout TechAPI
uses: actions/checkout@v4
with:
repository: Seungpyo1007/TechAPI
repository: GetTechAPI/TechAPI
path: techapi
token: ${{ secrets.TECHAPI_TOKEN || secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "TechAPI"]
path = TechAPI
url = https://github.com/Seungpyo1007/TechAPI.git
url = https://github.com/GetTechAPI/TechAPI.git
branch = main
Loading