Skip to content

Commit d7da280

Browse files
committed
fix old links pointing pages before repository transition
1 parent 92a8759 commit d7da280

File tree

23 files changed

+51
-51
lines changed

23 files changed

+51
-51
lines changed

.github/workflows/benchmarkjs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run benchmark
1919
run: cd examples/benchmarkjs && npm install && node bench.js | tee output.txt
2020
- name: Store benchmark result
21-
uses: rhysd/github-action-benchmark@v1
21+
uses: benchmark-action/github-action-benchmark@v1
2222
with:
2323
name: Benchmark.js Benchmark
2424
tool: 'benchmarkjs'

.github/workflows/catch2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cmake --build . --config Release
2323
./Catch2_bench | tee ../benchmark_result.txt
2424
- name: Store benchmark result
25-
uses: rhysd/github-action-benchmark@v1
25+
uses: benchmark-action/github-action-benchmark@v1
2626
with:
2727
name: Catch2 Benchmark
2828
tool: "catch2"

.github/workflows/commit-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: ./cache
2424
key: ${{ runner.os }}-benchmark
2525
- name: Store benchmark result
26-
uses: rhysd/github-action-benchmark@v1
26+
uses: benchmark-action/github-action-benchmark@v1
2727
with:
2828
name: Alert setup example with cache
2929
tool: 'go'

.github/workflows/cpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run benchmark
2323
run: cd examples/cpp && make json
2424
- name: Store benchmark result
25-
uses: rhysd/github-action-benchmark@v1
25+
uses: benchmark-action/github-action-benchmark@v1
2626
with:
2727
name: C++ Benchmark
2828
tool: 'googlecpp'

.github/workflows/criterion-rs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run benchmark
1919
run: cd examples/criterion-rs && cargo +nightly bench -- --output-format bencher | tee output.txt
2020
- name: Store benchmark result
21-
uses: rhysd/github-action-benchmark@v1
21+
uses: benchmark-action/github-action-benchmark@v1
2222
with:
2323
name: Rust Benchmark
2424
tool: 'cargo'

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run benchmark
1919
run: cd examples/go && go test -bench 'BenchmarkFib' | tee output.txt
2020
- name: Store benchmark result
21-
uses: rhysd/github-action-benchmark@v1
21+
uses: benchmark-action/github-action-benchmark@v1
2222
with:
2323
name: Go Benchmark
2424
tool: 'go'

.github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: ./cache
2424
key: ${{ runner.os }}-benchmark
2525
- name: Store benchmark result
26-
uses: rhysd/github-action-benchmark@v1
26+
uses: benchmark-action/github-action-benchmark@v1
2727
with:
2828
tool: 'go'
2929
output-file-path: examples/go/output.txt

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
pip install -r requirements.txt
2222
pytest bench.py --benchmark-json output.json
2323
- name: Store benchmark result
24-
uses: rhysd/github-action-benchmark@v1
24+
uses: benchmark-action/github-action-benchmark@v1
2525
with:
2626
name: Python Benchmark with pytest-benchmark
2727
tool: 'pytest'

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run benchmark
1919
run: cd examples/rust && cargo +nightly bench | tee output.txt
2020
- name: Store benchmark result
21-
uses: rhysd/github-action-benchmark@v1
21+
uses: benchmark-action/github-action-benchmark@v1
2222
with:
2323
name: Rust Benchmark
2424
tool: 'cargo'

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ Important part is 2 and 3.
2525

2626
For example, here are commits to add support for `go test -bench`:
2727

28-
- https://github.com/rhysd/github-action-benchmark/commit/6425d898fdfe2ab1540f1af3adb3f37a0ae623f3
29-
- https://github.com/rhysd/github-action-benchmark/commit/272a6808eff6b652247813089ab9aef4b8a2bd50
30-
- https://github.com/rhysd/github-action-benchmark/commit/3a25daca11153c62be23142120fc6c93b4bd411d
28+
- https://github.com/benchmark-action/github-action-benchmark/commit/6425d898fdfe2ab1540f1af3adb3f37a0ae623f3
29+
- https://github.com/benchmark-action/github-action-benchmark/commit/272a6808eff6b652247813089ab9aef4b8a2bd50
30+
- https://github.com/benchmark-action/github-action-benchmark/commit/3a25daca11153c62be23142120fc6c93b4bd411d
3131

3232
And for another example, here are commits to add support for `pytest-benchmark`:
3333

34-
- Implement and add example: https://github.com/rhysd/github-action-benchmark/commit/18c82f288b20de1538f8d7a1669221b545968f54
35-
- Add test: https://github.com/rhysd/github-action-benchmark/commit/eb449170566ff5882e75eeaeb637f17a302fbf7e
36-
- Add workflows for test and example: https://github.com/rhysd/github-action-benchmark/commit/1e4ebf2e9ecde9e7620661c60455b22837a2bdaf
37-
- Add documentation: https://github.com/rhysd/github-action-benchmark/commit/895f92f564521597492bd281cbf6c8efd39f628e
34+
- Implement and add example: https://github.com/benchmark-action/github-action-benchmark/commit/18c82f288b20de1538f8d7a1669221b545968f54
35+
- Add test: https://github.com/benchmark-action/github-action-benchmark/commit/eb449170566ff5882e75eeaeb637f17a302fbf7e
36+
- Add workflows for test and example: https://github.com/benchmark-action/github-action-benchmark/commit/1e4ebf2e9ecde9e7620661c60455b22837a2bdaf
37+
- Add documentation: https://github.com/benchmark-action/github-action-benchmark/commit/895f92f564521597492bd281cbf6c8efd39f628e
3838

3939
Optional: If you add a new example workflow under `.github/workflows/`, you might want to add your
4040
user name to `alert-comment-cc-users` input like `alert-comment-cc-users: '@rhysd,@you'`.

0 commit comments

Comments
 (0)