Skip to content

Commit 9681433

Browse files
authored
fix: update repository references from rspack-contrib to rstackjs (#10)
1 parent 7ac7245 commit 9681433

17 files changed

Lines changed: 80 additions & 80 deletions

File tree

.github/actions/ecosystem-ci-result/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
HEADING: ${{ inputs.heading }}
3434
with:
3535
script: |
36-
const owner = "rspack-contrib";
36+
const owner = "rstackjs";
3737
const repo = "rstack-ecosystem-ci";
3838
const jobPrefix = process.env.JOB_PREFIX ?? 'execute-all ';
3939
const rawHeading = process.env.HEADING;

.github/actions/ecosystem_ci_dispatch/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
ecosystem-owner:
99
description: "Owner of the downstream ecosystem CI repository"
1010
required: false
11-
default: "rspack-contrib"
11+
default: "rstackjs"
1212
ecosystem-repo:
1313
description: "Repository containing the downstream workflow"
1414
required: true
@@ -99,7 +99,7 @@ runs:
9999
uses: convictional/trigger-workflow-and-wait@f69fa9eedd3c62a599220f4d5745230e237904be # v1.6.5
100100
continue-on-error: true
101101
with:
102-
owner: rspack-contrib
102+
owner: rstackjs
103103
repo: rstack-ecosystem-ci
104104
workflow_file_name: ${{ inputs.workflow-file }}
105105
ref: main
@@ -112,7 +112,7 @@ runs:
112112
fetch-depth: 1
113113

114114
- id: eco-ci-result
115-
uses: rspack-contrib/rstack-ecosystem-ci/.github/actions/ecosystem-ci-result@main
115+
uses: rstackjs/rstack-ecosystem-ci/.github/actions/ecosystem-ci-result@main
116116
name: Get CI Result
117117
with:
118118
job-prefix: ${{ inputs.job-name-prefix }}

.github/actions/ecosystem_ci_per_commit/action.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
ecosystem-owner:
99
description: "Owner of the downstream ecosystem CI repository"
1010
required: false
11-
default: "rspack-contrib"
11+
default: "rstackjs"
1212
ecosystem-repo:
1313
description: "Repository containing the downstream workflow"
1414
required: true
@@ -49,7 +49,7 @@ runs:
4949
continue-on-error: true
5050
uses: convictional/trigger-workflow-and-wait@f69fa9eedd3c62a599220f4d5745230e237904be # v1.6.5
5151
with:
52-
owner: rspack-contrib
52+
owner: rstackjs
5353
repo: rstack-ecosystem-ci
5454
workflow_file_name: ${{ inputs.workflow-file }}
5555
github_token: ${{ inputs.github-token }}
@@ -70,7 +70,7 @@ runs:
7070

7171
- name: Get CI Result
7272
id: eco-ci-result
73-
uses: rspack-contrib/rstack-ecosystem-ci/.github/actions/ecosystem-ci-result@main
73+
uses: rstackjs/rstack-ecosystem-ci/.github/actions/ecosystem-ci-result@main
7474
with:
7575
job-prefix: ${{ inputs.job-name-prefix }}
7676
heading: ${{ inputs.ecosystem-repo }}
@@ -92,7 +92,7 @@ runs:
9292
- name: Checkout ecosystem-ci repository
9393
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9494
with:
95-
repository: rspack-contrib/rstack-ecosystem-ci
95+
repository: rstackjs/rstack-ecosystem-ci
9696
ref: main
9797
path: ecosystem-ci-repo
9898
fetch-depth: 1
@@ -105,7 +105,7 @@ runs:
105105
SUMMARY_MARKDOWN: ${{ steps.eco-ci-result.outputs.summary }}
106106
RESULTS_JSON: ${{ steps.eco-ci-result.outputs.results }}
107107
WORKFLOW_FILE: ${{ inputs.workflow-file }}
108-
HISTORY_REPOSITORY: rspack-contrib/rstack-ecosystem-ci
108+
HISTORY_REPOSITORY: rstackjs/rstack-ecosystem-ci
109109
OUTPUT_DIR: data-artifacts
110110
GITHUB_TOKEN: ${{ inputs.github-token }}
111111
run: |
@@ -120,6 +120,6 @@ runs:
120120
clean: false
121121
target-folder: .
122122
token: ${{ inputs.github-token }}
123-
repository-name: rspack-contrib/rstack-ecosystem-ci
123+
repository-name: rstackjs/rstack-ecosystem-ci
124124
git-config-name: github-actions[bot]
125125
git-config-email: github-actions[bot]@users.noreply.github.com

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "rstack-ecosystem-ci",
33
"version": "0.2.0",
44
"description": "Rstack Ecosystem CI",
5-
"homepage": "https://github.com/rspack-contrib/rstack-ecosystem-ci#readme",
5+
"homepage": "https://github.com/rstackjs/rstack-ecosystem-ci#readme",
66
"bugs": {
7-
"url": "https://github.com/rspack-contrib/rstack-ecosystem-ci/issues"
7+
"url": "https://github.com/rstackjs/rstack-ecosystem-ci/issues"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/rspack-contrib/rstack-ecosystem-ci.git"
11+
"url": "git+https://github.com/rstackjs/rstack-ecosystem-ci.git"
1212
},
1313
"license": "MIT",
1414
"type": "module",

scripts/update-ecosystem-history.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if (
109109
const API_HEADERS = {
110110
Accept: 'application/vnd.github+json',
111111
Authorization: `Bearer ${TOKEN}`,
112-
'User-Agent': 'rspack-contrib-rstack-ecosystem-ci',
112+
'User-Agent': 'rstackjs-rstack-ecosystem-ci',
113113
};
114114

115115
/**
@@ -136,7 +136,7 @@ async function readExistingRecords() {
136136
headers: {
137137
Accept: 'application/json',
138138
Authorization: `Bearer ${TOKEN}`,
139-
'User-Agent': 'rspack-contrib-rstack-ecosystem-ci',
139+
'User-Agent': 'rstackjs-rstack-ecosystem-ci',
140140
},
141141
});
142142

tests/rsbuild/examples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { runInRepo } from '../../utils';
44
export async function test(options: RunOptions) {
55
await runInRepo({
66
...options,
7-
repo: 'rspack-contrib/rspack-examples',
7+
repo: 'rstackjs/rstack-examples',
88
branch: 'main',
99
test: ['build:rsbuild'],
1010
});

tests/rsbuild/plugins.ts

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@ export async function test(options: RunOptions) {
1010
}> = [];
1111

1212
const plugins = [
13-
// 'rspack-contrib/rsbuild-plugin-umd',
14-
'rspack-contrib/rsbuild-plugin-eslint',
15-
// 'rspack-contrib/rsbuild-plugin-mdx',
16-
// 'rspack-contrib/rsbuild-plugin-google-analytics',
17-
// 'rspack-contrib/rsbuild-plugin-html-minifier-terser',
18-
// 'rspack-contrib/rsbuild-plugin-open-graph',
19-
// 'rspack-contrib/rsbuild-plugin-image-compress',
20-
// 'rspack-contrib/rsbuild-plugin-css-minimizer',
21-
// 'rspack-contrib/rsbuild-plugin-typed-css-modules',
22-
// 'rspack-contrib/rsbuild-plugin-pug',
23-
// 'rspack-contrib/rsbuild-plugin-toml',
24-
// 'rspack-contrib/rsbuild-plugin-template',
25-
// 'rspack-contrib/rsbuild-plugin-styled-components',
26-
// 'rspack-contrib/rsbuild-plugin-rem',
27-
// 'rspack-contrib/rsbuild-plugin-vue2',
28-
// 'rspack-contrib/rsbuild-plugin-yaml',
29-
// 'rspack-contrib/rsbuild-plugin-vue2-jsx',
30-
// 'rspack-contrib/rsbuild-plugin-type-check',
31-
// 'rspack-contrib/rsbuild-plugin-source-build',
32-
// 'rspack-contrib/rsbuild-plugin-node-polyfill',
33-
// 'rspack-contrib/rsbuild-plugin-ejs',
34-
// 'rspack-contrib/rsbuild-plugin-check-syntax',
35-
// 'rspack-contrib/rsbuild-plugin-basic-ssl',
36-
// 'rspack-contrib/rsbuild-plugin-vue-jsx',
37-
// 'rspack-contrib/rsbuild-plugin-assets-retry',
38-
// 'rspack-contrib/rsbuild-plugin-tailwindcss',
13+
// 'rstackjs/rsbuild-plugin-umd',
14+
'rstackjs/rsbuild-plugin-eslint',
15+
// 'rstackjs/rsbuild-plugin-mdx',
16+
// 'rstackjs/rsbuild-plugin-google-analytics',
17+
// 'rstackjs/rsbuild-plugin-html-minifier-terser',
18+
// 'rstackjs/rsbuild-plugin-open-graph',
19+
// 'rstackjs/rsbuild-plugin-image-compress',
20+
// 'rstackjs/rsbuild-plugin-css-minimizer',
21+
// 'rstackjs/rsbuild-plugin-typed-css-modules',
22+
// 'rstackjs/rsbuild-plugin-pug',
23+
// 'rstackjs/rsbuild-plugin-toml',
24+
// 'rstackjs/rsbuild-plugin-template',
25+
// 'rstackjs/rsbuild-plugin-styled-components',
26+
// 'rstackjs/rsbuild-plugin-rem',
27+
// 'rstackjs/rsbuild-plugin-vue2',
28+
// 'rstackjs/rsbuild-plugin-yaml',
29+
// 'rstackjs/rsbuild-plugin-vue2-jsx',
30+
// 'rstackjs/rsbuild-plugin-type-check',
31+
// 'rstackjs/rsbuild-plugin-source-build',
32+
// 'rstackjs/rsbuild-plugin-node-polyfill',
33+
// 'rstackjs/rsbuild-plugin-ejs',
34+
// 'rstackjs/rsbuild-plugin-check-syntax',
35+
// 'rstackjs/rsbuild-plugin-basic-ssl',
36+
// 'rstackjs/rsbuild-plugin-vue-jsx',
37+
// 'rstackjs/rsbuild-plugin-assets-retry',
38+
// 'rstackjs/rsbuild-plugin-tailwindcss',
3939
];
4040

4141
const { workspace } = options;

tests/rspack/examples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { runInRepo } from '../../utils';
44
export async function test(options: RunOptions) {
55
await runInRepo({
66
...options,
7-
repo: 'rspack-contrib/rspack-examples',
7+
repo: 'rstackjs/rstack-examples',
88
branch: 'main',
99
test: [
1010
'build:rspack',

tests/rspack/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { runInRepo } from '../../utils';
44
export async function test(options: RunOptions) {
55
await runInRepo({
66
...options,
7-
repo: 'rspack-contrib/rspack-plugin-ci',
7+
repo: 'rstackjs/rspack-plugin-ci',
88
branch: 'main',
99
test: ['test'],
1010
});

website/scripts/fetch-remote-history.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { dirname, resolve } from 'node:path';
55
import { fileURLToPath } from 'node:url';
66

77
const STACKS = ['rsbuild', 'rspack', 'rslib', 'rstest', 'rsdoctor', 'rspress'];
8-
const DATA_REPO = 'rspack-contrib/rstack-ecosystem-ci';
8+
const DATA_REPO = 'rstackjs/rstack-ecosystem-ci';
99
const DATA_BRANCH_URL = `https://raw.githubusercontent.com/${DATA_REPO}/data`;
1010

1111
const isMockMode = process.env.RSBUILD_PUBLIC_DATA_SOURCE === 'mock';

0 commit comments

Comments
 (0)