Skip to content

Commit 318cae4

Browse files
committed
Update references to the git repository
1 parent 49e468e commit 318cae4

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/crate-addition-or-update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ assignees: ''
99

1010
Please read [our crate policy][policy]. Any issue opened for a new or updated crate version will be closed with a reference to the same policy.
1111

12-
[policy]: https://github.com/integer32llc/rust-playground/blob/master/CRATE_POLICY.md
12+
[policy]: https://github.com/rust-lang/rust-playground/blob/master/CRATE_POLICY.md

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Validate everything
77
types:
88
- labeled
99
branches:
10-
- master
10+
- main
1111
env:
1212
DOCKER_HUB_USERNAME: shepmaster
1313
GH_CONTAINER_REGISTRY_USERNAME: shepmaster
@@ -337,7 +337,7 @@ jobs:
337337
runs-on: ubuntu-latest
338338
needs:
339339
- run_integration_tests
340-
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
340+
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
341341
permissions:
342342
contents: read
343343
id-token: write

CRATE_POLICY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ majority of implementation work.
4242

4343
[all time downloads]: https://crates.io/crates?sort=downloads
4444
[Rust cookbook]: https://rust-lang-nursery.github.io/rust-cookbook/
45-
[alternate algorithms]: https://github.com/integer32llc/rust-playground/issues/101
45+
[alternate algorithms]: https://github.com/rust-lang/rust-playground/issues/101

ci/workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ workflows:
221221
pull_request_target:
222222
types: [labeled]
223223
branches:
224-
- master
224+
- main
225225

226226
<<: *global_env
227227

@@ -462,7 +462,7 @@ workflows:
462462
runs-on: ubuntu-latest
463463
needs:
464464
- run_integration_tests
465-
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
465+
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
466466
permissions:
467467
contents: read
468468
id-token: write

deployment/ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Reboot the instance at this point.
5656

5757
#### Get the code
5858
```
59-
git clone https://github.com/integer32llc/rust-playground.git
59+
git clone https://github.com/rust-lang/rust-playground.git
6060
cd rust-playground
6161
```
6262

top-crates/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
description = "Calculates what crates should be included in the playground"
88
license = "MIT OR Apache-2.0"
9-
repository = "https://github.com/integer32llc/rust-playground"
9+
repository = "https://github.com/rust-lang/rust-playground"
1010

1111
[dependencies]
1212
cargo = "0.68.0"

ui/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ mkdir tmp
4242
TMPDIR=$PWD/tmp cargo run
4343
```
4444

45-
(Note: This was reported at [#480](https://github.com/integer32llc/rust-playground/issues/480))
45+
(Note: This was reported at [#480](https://github.com/rust-lang/rust-playground/issues/480))

ui/frontend/Help.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ const CLIPPY_URL = 'https://github.com/Manishearth/rust-clippy';
1313
const MIRI_URL = 'https://github.com/rust-lang/miri';
1414
const CRATES_IO_URL = 'https://crates.io/';
1515
const RUST_COOKBOOK_URL = 'https://rust-lang-nursery.github.io/rust-cookbook/';
16-
const CRATES_URL = 'https://github.com/integer32llc/rust-playground/blob/master/compiler/base/Cargo.toml';
16+
const CRATES_URL = 'https://github.com/rust-lang/rust-playground/blob/main/compiler/base/Cargo.toml';
1717
const GIST_URL = 'https://gist.github.com/';
1818
const I32_URL = 'http://integer32.com/';
1919
const LOCALSTORAGE_URL = 'https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API';
2020
const ORIGINAL_PLAYGROUND_URL = 'https://github.com/rust-lang/rust-playpen';
21-
const REPO_URL = 'https://github.com/integer32llc/rust-playground';
21+
const REPO_URL = 'https://github.com/rust-lang/rust-playground';
2222
const RUSTFMT_URL = 'https://github.com/rust-lang-nursery/rustfmt';
2323
const SHEPMASTER_URL = 'https://github.com/shepmaster/';
2424

0 commit comments

Comments
 (0)