Skip to content

Commit 999990f

Browse files
author
mike dupont
committed
switching to our org
1 parent 6ebef92 commit 999990f

7 files changed

+103
-103
lines changed

.github/workflows/ci.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
check:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: meta-introspector/checkout@v4
1212

13-
- uses: pnpm/action-setup@v3
13+
- uses: meta-introspector/action-setup@v3
1414
with:
1515
version: 9.4.0
1616

17-
- uses: actions/setup-node@v4
17+
- uses: meta-introspector/setup-node@v4
1818
with:
1919
node-version: "23"
2020
cache: "pnpm"
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build packages
4040
run: pnpm run build
4141

42-
- name: Upload coverage reports to Codecov
43-
uses: codecov/codecov-action@v5
44-
with:
45-
token: ${{ secrets.CODECOV_TOKEN }}
42+
# - name: Upload coverage reports to Codecov
43+
# uses: meta-introspector/codecov-action@v5
44+
# with:
45+
# token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
build-mode: none
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: meta-introspector/checkout@v4
3535

3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@v3
37+
uses: meta-introspector/codeql-action/init@v3
3838
with:
3939
languages: ${{ matrix.language }}
4040
build-mode: ${{ matrix.build-mode }}
@@ -50,6 +50,6 @@ jobs:
5050
exit 1
5151
5252
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@v3
53+
uses: meta-introspector/codeql-action/analyze@v3
5454
with:
5555
category: "/language:${{matrix.language}}"
Original file line numberDiff line numberDiff line change
@@ -1,89 +1,89 @@
1-
name: Generate Readme Translations
2-
on:
3-
push:
4-
branches:
5-
- "1222--README-ci-auto-translation"
1+
# name: Generate Readme Translations
2+
# on:
3+
# push:
4+
# branches:
5+
# - "1222--README-ci-auto-translation"
66

7-
jobs:
8-
translation:
9-
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
language:
13-
[
14-
{ code: "CN", name: "Chinese" },
15-
{ code: "DE", name: "German" },
16-
{ code: "ES", name: "Spanish" },
17-
{ code: "FR", name: "French" },
18-
{ code: "HE", name: "Hebrew" },
19-
{ code: "IT", name: "Italian" },
20-
{ code: "JA", name: "Japanese" },
21-
{ code: "KOR", name: "Korean" },
22-
{ code: "PTBR", name: "Portuguese (Brazil)" },
23-
{ code: "RU", name: "Russian" },
24-
{ code: "TH", name: "Thai" },
25-
{ code: "TR", name: "Turkish" },
26-
{ code: "VI", name: "Vietnamese" },
27-
]
28-
permissions:
29-
contents: write
30-
steps:
31-
- uses: actions/checkout@v4
32-
with:
33-
ref: main
34-
token: ${{ secrets.GH_TOKEN }}
7+
# jobs:
8+
# translation:
9+
# runs-on: ubuntu-latest
10+
# strategy:
11+
# matrix:
12+
# language:
13+
# [
14+
# { code: "CN", name: "Chinese" },
15+
# { code: "DE", name: "German" },
16+
# { code: "ES", name: "Spanish" },
17+
# { code: "FR", name: "French" },
18+
# { code: "HE", name: "Hebrew" },
19+
# { code: "IT", name: "Italian" },
20+
# { code: "JA", name: "Japanese" },
21+
# { code: "KOR", name: "Korean" },
22+
# { code: "PTBR", name: "Portuguese (Brazil)" },
23+
# { code: "RU", name: "Russian" },
24+
# { code: "TH", name: "Thai" },
25+
# { code: "TR", name: "Turkish" },
26+
# { code: "VI", name: "Vietnamese" },
27+
# ]
28+
# permissions:
29+
# contents: write
30+
# steps:
31+
# - uses: meta-introspector/checkout@v4
32+
# with:
33+
# ref: main
34+
# token: ${{ secrets.GH_TOKEN }}
3535

36-
- name: Translate to ${{ matrix.language.name }}
37-
uses: 0xjord4n/aixion@v1.2.1
38-
id: aixion
39-
with:
40-
config: >
41-
{
42-
"provider": "openai",
43-
"provider_options": {
44-
"api_key": "${{ secrets.OPENAI_API_KEY }}"
45-
},
46-
"messages": [
47-
{
48-
"role": "system",
49-
"content": "You will be provided with a markdown file in English, and your task is to translate it into ${{ matrix.language.name }}."
50-
},
51-
{
52-
"role": "user",
53-
"content_path": "README.md"
54-
}
55-
],
56-
"save_path": "README_${{ matrix.language.code }}.md",
57-
"model": "gpt-4o"
58-
}
36+
# - name: Translate to ${{ matrix.language.name }}
37+
# uses: 0xjord4n/aixion@v1.2.1
38+
# id: aixion
39+
# with:
40+
# config: >
41+
# {
42+
# "provider": "openai",
43+
# "provider_options": {
44+
# "api_key": "${{ secrets.OPENAI_API_KEY }}"
45+
# },
46+
# "messages": [
47+
# {
48+
# "role": "system",
49+
# "content": "You will be provided with a markdown file in English, and your task is to translate it into ${{ matrix.language.name }}."
50+
# },
51+
# {
52+
# "role": "user",
53+
# "content_path": "README.md"
54+
# }
55+
# ],
56+
# "save_path": "README_${{ matrix.language.code }}.md",
57+
# "model": "gpt-4o"
58+
# }
5959

60-
# Upload each translated file as an artifact
61-
- name: Upload translation
62-
uses: actions/upload-artifact@v4
63-
with:
64-
name: readme-${{ matrix.language.code }}
65-
path: README_${{ matrix.language.code }}.md
60+
# # Upload each translated file as an artifact
61+
# - name: Upload translation
62+
# uses: meta-introspector/upload-artifact@v4
63+
# with:
64+
# name: readme-${{ matrix.language.code }}
65+
# path: README_${{ matrix.language.code }}.md
6666

67-
commit:
68-
needs: translation
69-
runs-on: ubuntu-latest
70-
steps:
71-
- uses: actions/checkout@v4
72-
with:
73-
ref: main
74-
token: ${{ secrets.GH_TOKEN }}
67+
# commit:
68+
# needs: translation
69+
# runs-on: ubuntu-latest
70+
# steps:
71+
# - uses: meta-introspector/checkout@v4
72+
# with:
73+
# ref: main
74+
# token: ${{ secrets.GH_TOKEN }}
7575

76-
# Download all translation artifacts
77-
- name: Download all translations
78-
uses: actions/download-artifact@v4
79-
with:
80-
pattern: readme-*
81-
merge-multiple: true
76+
# # Download all translation artifacts
77+
# - name: Download all translations
78+
# uses: meta-introspector/download-artifact@v4
79+
# with:
80+
# pattern: readme-*
81+
# merge-multiple: true
8282

83-
- name: Commit all translations
84-
uses: stefanzweifel/git-auto-commit-action@v5
85-
with:
86-
commit_message: "chore: update all README translations"
87-
branch: main
88-
file_pattern: "README_*.md"
89-
commit_author: "GitHub Action <actions@github.com>"
83+
# - name: Commit all translations
84+
# uses: stefanzweifel/git-auto-commit-action@v5
85+
# with:
86+
# commit_message: "chore: update all README translations"
87+
# branch: main
88+
# file_pattern: "README_*.md"
89+
# commit_author: "GitHub Action <actions@github.com>"

.github/workflows/jsdoc-automation.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: meta-introspector/checkout@v4
5252
with:
5353
fetch-depth: 0
5454

5555
- name: Setup Node.js
56-
uses: actions/setup-node@v4
56+
uses: meta-introspector/setup-node@v4
5757
with:
5858
node-version: "20"
5959

6060
- name: Install pnpm
61-
uses: pnpm/action-setup@v2
61+
uses: meta-introspector/action-setup@v2
6262
with:
6363
version: 8
6464
run_install: false

.github/workflows/pre-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: meta-introspector/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-node@v4
19+
- uses: meta-introspector/setup-node@v4
2020
with:
2121
node-version: 22
2222

@@ -64,7 +64,7 @@ jobs:
6464
fi
6565
6666
- name: Create GitHub Release
67-
uses: actions/create-release@v1
67+
uses: meta-introspector/create-release@v1
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
7070
PNPM_HOME: /home/runner/setup-pnpm/node_modules/.bin

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: meta-introspector/checkout@v4
1313
with:
1414
fetch-depth: 0
1515

16-
- uses: actions/setup-node@v4
16+
- uses: meta-introspector/setup-node@v4
1717
with:
1818
node-version: 23.3.0
1919

20-
- uses: pnpm/action-setup@v3
20+
- uses: meta-introspector/action-setup@v3
2121
with:
2222
version: 9.15.0
2323

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
DAYS_BEFORE_CLOSE: 7 # Define the days-before-close value
1717

1818
steps:
19-
- uses: actions/stale@v5
19+
- uses: meta-introspector/stale@v5
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222
stale-issue-message: |

0 commit comments

Comments
 (0)