Skip to content

Commit 3ecda50

Browse files
committed
update repo org
1 parent ed776d2 commit 3ecda50

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ Collect and monitor metrics about Bevy
44

55
## How It Works
66

7-
- Commits on which to collect metrics are pushed as files to the [`queue` branch](https://github.com/mockersf/twitcher/tree/queue)
7+
- Commits on which to collect metrics are pushed as files to the [`queue` branch](https://github.com/bevyengine/twitcher/tree/queue)
88
- A GitHub action will push new commits from the Bevy repositoty every hour
99
- Additional commits can be pushed to collect metrics about history or more commits
1010
- Dedicated hardware checks out the queue branch and runs the metrics collection process
11-
- Results are pushed to the [`results` branch](https://github.com/mockersf/twitcher/tree/results), and the commit finished is removed from the [`queue` branch](https://github.com/mockersf/twitcher/tree/queue)
12-
- A static website is built from the [`results` branch](https://github.com/mockersf/twitcher/tree/results) and deployed on GitHub Pages
11+
- Results are pushed to the [`results` branch](https://github.com/bevyengine/twitcher/tree/results), and the commit finished is removed from the [`queue` branch](https://github.com/bevyengine/twitcher/tree/queue)
12+
- A static website is built from the [`results` branch](https://github.com/bevyengine/twitcher/tree/results) and deployed on GitHub Pages
1313

1414
## How Can You Trigger Metrics Collection On A Commit
1515

16-
Open a PR on the [`queue` branch](https://github.com/mockersf/twitcher/tree/queue) adding a file with the commit you want as a filename.
16+
Open a PR on the [`queue` branch](https://github.com/bevyengine/twitcher/tree/queue) adding a file with the commit you want as a filename.
1717

1818
## How Can You Help
1919

2020
### Metrics Collection
2121

2222
You can open an issue suggesting a new metric to collect, or a PR to implement it.
2323

24-
They are tagged with the [`Metrics`](https://github.com/mockersf/twitcher/issues?q=state%3Aopen%20label%3AMetrics) label.
24+
They are tagged with the [`Metrics`](https://github.com/bevyengine/twitcher/issues?q=state%3Aopen%20label%3AMetrics) label.
2525

2626
### Website
2727

28-
Improvements about the website are tagged with the [`Website`](https://github.com/mockersf/twitcher/issues?q=state%3Aopen%20label%3AWebsite) label.
28+
Improvements about the website are tagged with the [`Website`](https://github.com/bevyengine/twitcher/issues?q=state%3Aopen%20label%3AWebsite) label.
2929

3030
### Collector
3131

32-
Improvements about the collector are tagged with the [`Collector`](https://github.com/mockersf/twitcher/issues?q=state%3Aopen%20label%3ACollector) label.
32+
Improvements about the collector are tagged with the [`Collector`](https://github.com/bevyengine/twitcher/issues?q=state%3Aopen%20label%3ACollector) label.

migrations/add_commit_ts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44

55
git clone git@github.com:bevyengine/bevy
66

7-
git clone -b results git@github.com:mockersf/twitcher.git results
7+
git clone -b results git@github.com:bevyengine/twitcher.git results
88

99
cd bevy
1010
for stats in `find ../results -type f -name 'stats.json'`

migrations/rename_native.size.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -x
44

5-
git clone -b results git@github.com:mockersf/twitcher.git results
5+
git clone -b results git@github.com:bevyengine/twitcher.git results
66

77
for stats in `find ./results -type f -name 'stats.json'`
88
do

runner.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ git pull
66

77
cargo build --release --bin collect
88

9-
git clone -b queue git@github.com:mockersf/twitcher.git queue
9+
git clone -b queue git@github.com:bevyengine/twitcher.git queue
1010
gitref=`find ./queue -type f | grep -v .git | head -n 1`
1111
if [ ! "$gitref" ]
1212
then
@@ -22,7 +22,7 @@ git reset --hard $gitref
2222
../target/release/collect all
2323
cd ..
2424

25-
git clone -b results git@github.com:mockersf/twitcher.git results
25+
git clone -b results git@github.com:bevyengine/twitcher.git results
2626
cp -r bevy/results/* results
2727
cd results
2828
git add .

0 commit comments

Comments
 (0)