Skip to content

Update references to the git repository #905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/crate-addition-or-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ assignees: ''

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.

[policy]: https://github.com/integer32llc/rust-playground/blob/master/CRATE_POLICY.md
[policy]: https://github.com/rust-lang/rust-playground/blob/master/CRATE_POLICY.md
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Validate everything
types:
- labeled
branches:
- master
- main
env:
DOCKER_HUB_USERNAME: shepmaster
GH_CONTAINER_REGISTRY_USERNAME: shepmaster
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- run_integration_tests
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion CRATE_POLICY.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ majority of implementation work.

[all time downloads]: https://crates.io/crates?sort=downloads
[Rust cookbook]: https://rust-lang-nursery.github.io/rust-cookbook/
[alternate algorithms]: https://github.com/integer32llc/rust-playground/issues/101
[alternate algorithms]: https://github.com/rust-lang/rust-playground/issues/101
4 changes: 2 additions & 2 deletions ci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ workflows:
pull_request_target:
types: [labeled]
branches:
- master
- main

<<: *global_env

Expand Down Expand Up @@ -462,7 +462,7 @@ workflows:
runs-on: ubuntu-latest
needs:
- run_integration_tests
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion deployment/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Reboot the instance at this point.

#### Get the code
```
git clone https://github.com/integer32llc/rust-playground.git
git clone https://github.com/rust-lang/rust-playground.git
cd rust-playground
```

Expand Down
2 changes: 1 addition & 1 deletion top-crates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

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

[dependencies]
cargo = "0.68.0"
Expand Down
2 changes: 1 addition & 1 deletion ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ mkdir tmp
TMPDIR=$PWD/tmp cargo run
```

(Note: This was reported at [#480](https://github.com/integer32llc/rust-playground/issues/480))
(Note: This was reported at [#480](https://github.com/rust-lang/rust-playground/issues/480))
4 changes: 2 additions & 2 deletions ui/frontend/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ const CLIPPY_URL = 'https://github.com/Manishearth/rust-clippy';
const MIRI_URL = 'https://github.com/rust-lang/miri';
const CRATES_IO_URL = 'https://crates.io/';
const RUST_COOKBOOK_URL = 'https://rust-lang-nursery.github.io/rust-cookbook/';
const CRATES_URL = 'https://github.com/integer32llc/rust-playground/blob/master/compiler/base/Cargo.toml';
const CRATES_URL = 'https://github.com/rust-lang/rust-playground/blob/main/compiler/base/Cargo.toml';
const GIST_URL = 'https://gist.github.com/';
const I32_URL = 'http://integer32.com/';
const LOCALSTORAGE_URL = 'https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API';
const ORIGINAL_PLAYGROUND_URL = 'https://github.com/rust-lang/rust-playpen';
const REPO_URL = 'https://github.com/integer32llc/rust-playground';
const REPO_URL = 'https://github.com/rust-lang/rust-playground';
const RUSTFMT_URL = 'https://github.com/rust-lang-nursery/rustfmt';
const SHEPMASTER_URL = 'https://github.com/shepmaster/';

Expand Down