Skip to content

Commit d7da280

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

23 files changed

+51
-51
lines changed

.github/workflows/benchmarkjs.yml

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+7-7
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'`.

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ definitions are in [.github/workflows/](./.github/workflows) directory. Live wor
4545

4646
All benchmark charts from above workflows are gathered in GitHub pages:
4747

48-
https://rhysd.github.io/github-action-benchmark/dev/bench/
48+
https://benchmark-action.github.io/github-action-benchmark/dev/bench/
4949

5050

5151

@@ -129,7 +129,7 @@ jobs:
129129
key: ${{ runner.os }}-benchmark
130130
# Run `github-action-benchmark` action
131131
- name: Store benchmark result
132-
uses: rhysd/github-action-benchmark@v1
132+
uses: benchmark-action/github-action-benchmark@v1
133133
with:
134134
# What benchmark tool the output.txt came from
135135
tool: 'go'
@@ -164,7 +164,7 @@ In addition to the above setup, GitHub API token needs to be given to enable `co
164164

165165
```yaml
166166
- name: Store benchmark result
167-
uses: rhysd/github-action-benchmark@v1
167+
uses: benchmark-action/github-action-benchmark@v1
168168
with:
169169
tool: 'go'
170170
output-file-path: output.txt
@@ -234,7 +234,7 @@ jobs:
234234
run: go test -bench 'BenchmarkFib' | tee output.txt
235235
# gh-pages branch is updated and pushed automatically with extracted benchmark data
236236
- name: Store benchmark result
237-
uses: rhysd/github-action-benchmark@v1
237+
uses: benchmark-action/github-action-benchmark@v1
238238
with:
239239
name: My Project Go Benchmark
240240
tool: 'go'
@@ -272,7 +272,7 @@ If you don't want to pass GitHub API token to this action, it's still OK.
272272

273273
```yaml
274274
- name: Store benchmark result
275-
uses: rhysd/github-action-benchmark@v1
275+
uses: benchmark-action/github-action-benchmark@v1
276276
with:
277277
name: My Project Go Benchmark
278278
tool: 'go'
@@ -502,8 +502,8 @@ Every benchmark data is stored in `window.BENCHMARK_DATA` so you can create your
502502

503503
This action conforms semantic versioning 2.0.
504504

505-
For example, `rhysd/github-action-benchmark@v1` means the latest version of `1.x.y`. And
506-
`rhysd/[email protected]` always uses `v1.0.2` even if a newer version is published.
505+
For example, `benchmark-action/github-action-benchmark@v1` means the latest version of `1.x.y`. And
506+
`benchmark-action/[email protected]` always uses `v1.0.2` even if a newer version is published.
507507

508508
`master` branch of this repository is for development and does not work as action.
509509

@@ -546,9 +546,9 @@ Every release will appear on your GitHub notifications page.
546546

547547
[build-badge]: https://github.com/benchmark-action/github-action-benchmark/workflows/CI/badge.svg?branch=master&event=push
548548
[ci]: https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3ACI
549-
[codecov-badge]: https://codecov.io/gh/rhysd/github-action-benchmark/branch/master/graph/badge.svg
550-
[codecov]: https://app.codecov.io/gh/rhysd/github-action-benchmark
551-
[release-badge]: https://img.shields.io/github/v/release/rhysd/github-action-benchmark.svg
549+
[codecov-badge]: https://codecov.io/gh/benchmark-action/github-action-benchmark/branch/master/graph/badge.svg
550+
[codecov]: https://app.codecov.io/gh/benchmark-action/github-action-benchmark
551+
[release-badge]: https://img.shields.io/github/v/release/benchmark-action/github-action-benchmark.svg
552552
[marketplace]: https://github.com/marketplace/actions/continuous-benchmark
553553
[proj]: https://github.com/benchmark-action/github-action-benchmark
554554
[rust-badge]: https://github.com/benchmark-action/github-action-benchmark/workflows/Rust%20Example/badge.svg
@@ -561,10 +561,10 @@ Every release will appear on your GitHub notifications page.
561561
[cargo-bench]: https://doc.rust-lang.org/cargo/commands/cargo-bench.html
562562
[benchmarkjs]: https://benchmarkjs.com/
563563
[gh-pages]: https://pages.github.com/
564-
[examples-page]: https://rhysd.github.io/github-action-benchmark/dev/bench/
564+
[examples-page]: https://benchmark-action.github.io/github-action-benchmark/dev/bench/
565565
[pytest-benchmark]: https://pypi.org/project/pytest-benchmark/
566566
[pytest]: https://pypi.org/project/pytest/
567-
[alert-comment-example]: https://github.com/rhysd/github-action-benchmark/commit/077dde1c236baba9244caad4d9e82ea8399dae20#commitcomment-36047186
567+
[alert-comment-example]: https://github.com/benchmark-action/github-action-benchmark/commit/077dde1c236baba9244caad4d9e82ea8399dae20#commitcomment-36047186
568568
[rust-workflow-example]: https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Rust+Example%22
569569
[go-workflow-example]: https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Go+Example%22
570570
[benchmarkjs-workflow-example]: https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Benchmark.js+Example%22

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'Continuous Benchmark'
2-
author: 'rhysd <https://rhysd.github.io>'
2+
author: 'github-action-benchmark developers <https://github.com/benchmark-action>'
33
description: 'Continuous Benchmark using GitHub pages as dash board for keeping performance'
44
branding:
55
icon: 'fast-forward'

examples/benchmarkjs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ JavaScript example for benchmarking with [benchmark.js][tool]
33

44
- [Workflow for this example](../../.github/workflows/benchmarkjs.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Benchmark.js+Example%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`](https://github.com/benchmark-action/github-action-benchmark)
99
with [benchmark.js][tool].
@@ -51,7 +51,7 @@ Store the benchmark results with step using the action. Please set `benchmarkjs`
5151

5252
```yaml
5353
- name: Store benchmark result
54-
uses: rhysd/github-action-benchmark@v1
54+
uses: benchmark-action/github-action-benchmark@v1
5555
with:
5656
tool: 'benchmarkjs'
5757
output-file-path: output.txt

examples/catch2/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
build/
1+
build/

examples/catch2/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ C++ example for benchmarking with [Catch2 Framework][tool]
33

44
- [Workflow for this example](../../.github/workflows/catch2.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Catch2+C%2B%2B+Example%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`][action] with [Catch2 Framework][tool].
99

@@ -41,7 +41,7 @@ Store the benchmark results with step using the action. Please set `catch2` to `
4141
4242
```yaml
4343
- name: Store benchmark result
44-
uses: rhysd/github-action-benchmark@v1
44+
uses: benchmark-action/github-action-benchmark@v1
4545
with:
4646
tool: 'catch2'
4747
output-file-path: benchmark_result.json

examples/cpp/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ C++ example for benchmarking with [Google Benchmark Framework][tool]
33

44
- [Workflow for this example](../../.github/workflows/cpp.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22C%2B%2B+Example%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`][action] with [Google Benchmark Framework][tool].
99

@@ -50,7 +50,7 @@ Store the benchmark results with step using the action. Please set `googlecpp` t
5050

5151
```yaml
5252
- name: Store benchmark result
53-
uses: rhysd/github-action-benchmark@v1
53+
uses: benchmark-action/github-action-benchmark@v1
5454
with:
5555
tool: 'googlecpp'
5656
output-file-path: benchmark_result.json

examples/criterion-rs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rust Criterion example for benchmarking with `cargo bench`
22

33
- [Workflow for this example](../../.github/workflows/criterion-rs.yml)
4-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
4+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
55

66
This directory shows how to use [`github-action-benchmark`](https://github.com/benchmark-action/github-action-benchmark)
77
with [`criterion`](https://github.com/bheisler/criterion.rs).
@@ -28,7 +28,7 @@ Store the benchmark results with step using the action. Please set `cargo` to `t
2828

2929
```yaml
3030
- name: Store benchmark result
31-
uses: rhysd/github-action-benchmark@v1
31+
uses: benchmark-action/github-action-benchmark@v1
3232
with:
3333
tool: 'cargo'
3434
output-file-path: output.txt

examples/go/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Go example for benchmarking with `go test -bench`
33

44
- [Workflow for this example](../../.github/workflows/go.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Go+Example%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`](https://github.com/benchmark-action/github-action-benchmark)
99
with `go test -bench` command.
@@ -27,7 +27,7 @@ Store the benchmark results with step using the action. Please set `go` to `tool
2727

2828
```yaml
2929
- name: Store benchmark result
30-
uses: rhysd/github-action-benchmark@v1
30+
uses: benchmark-action/github-action-benchmark@v1
3131
with:
3232
tool: 'go'
3333
output-file-path: output.txt

examples/pytest/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Python example for benchmarking with [pytest-benchmark][tool]
33

44
- [Workflow for this example](../../.github/workflows/pytest.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Python+Example+with+pytest%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`](https://github.com/benchmark-action/github-action-benchmark)
99
with [pytest-benchmark][tool].
@@ -49,7 +49,7 @@ Store the benchmark results with step using the action. Please set `pytest` to `
4949

5050
```yaml
5151
- name: Store benchmark result
52-
uses: rhysd/github-action-benchmark@v1
52+
uses: benchmark-action/github-action-benchmark@v1
5353
with:
5454
tool: 'pytest'
5555
output-file-path: output.json

examples/rust/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Rust example for benchmarking with `cargo bench`
33

44
- [Workflow for this example](../../.github/workflows/rust.yml)
55
- [Action log of this example](https://github.com/benchmark-action/github-action-benchmark/actions?query=workflow%3A%22Rust+Example%22)
6-
- [Benchmark results on GitHub pages](https://rhysd.github.io/github-action-benchmark/dev/bench/)
6+
- [Benchmark results on GitHub pages](https://benchmark-action.github.io/github-action-benchmark/dev/bench/)
77

88
This directory shows how to use [`github-action-benchmark`](https://github.com/benchmark-action/github-action-benchmark)
99
with [`cargo bench`](https://doc.rust-lang.org/cargo/commands/cargo-bench.html).
@@ -38,7 +38,7 @@ Store the benchmark results with step using the action. Please set `cargo` to `t
3838

3939
```yaml
4040
- name: Store benchmark result
41-
uses: rhysd/github-action-benchmark@v1
41+
uses: benchmark-action/github-action-benchmark@v1
4242
with:
4343
tool: 'cargo'
4444
output-file-path: output.txt

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "git+https://github.com/rhysd/github-action-benchmark.git"
21+
"url": "git+https://github.com/benchmark-action/github-action-benchmark.git"
2222
},
2323
"keywords": [
2424
"github",
2525
"action",
2626
"benchmark"
2727
],
28-
"author": "rhysd <https://rhysd.github.io>",
28+
"author": "github-action-benchmark developers <https://github.com/benchmark-action>",
2929
"license": "MIT",
3030
"bugs": {
31-
"url": "https://github.com/rhysd/github-action-benchmark/issues"
31+
"url": "https://github.com/benchmark-action/github-action-benchmark/issues"
3232
},
33-
"homepage": "https://github.com/rhysd/github-action-benchmark#readme",
33+
"homepage": "https://github.com/benchmark-action/github-action-benchmark#readme",
3434
"dependencies": {
3535
"@actions/core": "^1.2.3",
3636
"@actions/exec": "^1.0.3",

test/data/extract/catch2_output.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Run with -? for options
66
-------------------------------------------------------------------------------
77
Fibonacci
88
-------------------------------------------------------------------------------
9-
/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark/examples/catch2/catch2_bench.cpp:5
9+
/Users/rhayasd/Develop/github.com/benchmark-action/github-action-benchmark/examples/catch2/catch2_bench.cpp:5
1010
...............................................................................
1111

1212
benchmark name samples iterations estimated
@@ -25,7 +25,7 @@ Fibonacci 20 100 2
2525
-------------------------------------------------------------------------------
2626
More Fibonacci
2727
-------------------------------------------------------------------------------
28-
/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark/examples/catch2/catch2_bench.cpp:13
28+
/Users/rhayasd/Develop/github.com/benchmark-action/github-action-benchmark/examples/catch2/catch2_bench.cpp:13
2929
...............................................................................
3030

3131
benchmark name samples iterations estimated

test/data/extract/go_output.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ goarch: amd64
33
BenchmarkFib10-8 5000000 325 ns/op
44
BenchmarkFib20 30000 40537.123 ns/op
55
PASS
6-
ok _/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark/examples/go 3.614s
6+
ok _/Users/rhayasd/Develop/github.com/benchmark-action/github-action-benchmark/examples/go 3.614s

0 commit comments

Comments
 (0)