├── .editorconfig ├── .github └── workflows │ ├── json.yml │ ├── markdown.yml │ └── yaml.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .prettierrc.json ├── .yamllint.yml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── about ├── README.md └── planning.md ├── meetings ├── 2019-10-08.md ├── 2019-10-15.md ├── 2019-10-22.md ├── 2019-10-29.md ├── 2019-11-05.md ├── 2019-11-12.md ├── 2019-11-19.md ├── 2019-11-26.md ├── 2019-12-03.md ├── 2019-12-10.md ├── 2019-12-17.md ├── 2023-10-31.md ├── 2023-11-13.md ├── 2023-11-20.md ├── 2023-11-27.md ├── 2023-12-04.md ├── 2024-01-08.md ├── 2024-01-15.md ├── 2024-01-22.md ├── 2024-02-05.md ├── 2024-02-12.md ├── 2024-02-19.md ├── 2024-02-26.md ├── 2024-03-04.md ├── 2024-03-11.md ├── 2024-09-02.md └── README.md └── service-catalog ├── README.md ├── bastion └── README.md ├── bors └── README.md ├── ci-mirrors └── README.md ├── crater ├── README.md ├── how-to-test-crater.md └── how-to-update-crater.md ├── crates-io-auth-action └── README.md ├── crates-io └── README.md ├── datadog ├── README.md └── about-permissions.md ├── dev-desktops ├── README.md ├── how-to-increase-disk-size.md └── how-to-update-system.md ├── discord-mods-bot └── README.md ├── dns └── README.md ├── docs-rs └── README.md ├── fastly ├── README.md ├── how-to-test-cache-invalidations.md └── website.md ├── ibm-runners └── README.md ├── infra-smoke-tests └── README.md ├── monitorbot └── README.md ├── playground └── README.md ├── releases └── README.md ├── rfcbot └── README.md ├── rust-assets-backup ├── README.md ├── faq.md ├── implementation.md └── maintenance.md ├── rust-ci ├── README.md ├── average-ci-time.png ├── ci-time-by-job.png ├── how-to-monitor-ci-time.md └── public-dashboard.md ├── rust-forge └── README.md ├── rust-log-analyzer └── README.md ├── rustc-perf └── README.md ├── rustup └── README.md ├── sync-team └── README.md └── team-member-access └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.github/workflows/json.yml -------------------------------------------------------------------------------- /.github/workflows/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.github/workflows/markdown.yml -------------------------------------------------------------------------------- /.github/workflows/yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.github/workflows/yaml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | MD013: 3 | code_blocks: false 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/README.md -------------------------------------------------------------------------------- /about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/about/README.md -------------------------------------------------------------------------------- /about/planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/about/planning.md -------------------------------------------------------------------------------- /meetings/2019-10-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-10-08.md -------------------------------------------------------------------------------- /meetings/2019-10-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-10-15.md -------------------------------------------------------------------------------- /meetings/2019-10-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-10-22.md -------------------------------------------------------------------------------- /meetings/2019-10-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-10-29.md -------------------------------------------------------------------------------- /meetings/2019-11-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-11-05.md -------------------------------------------------------------------------------- /meetings/2019-11-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-11-12.md -------------------------------------------------------------------------------- /meetings/2019-11-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-11-19.md -------------------------------------------------------------------------------- /meetings/2019-11-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-11-26.md -------------------------------------------------------------------------------- /meetings/2019-12-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-12-03.md -------------------------------------------------------------------------------- /meetings/2019-12-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-12-10.md -------------------------------------------------------------------------------- /meetings/2019-12-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2019-12-17.md -------------------------------------------------------------------------------- /meetings/2023-10-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2023-10-31.md -------------------------------------------------------------------------------- /meetings/2023-11-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2023-11-13.md -------------------------------------------------------------------------------- /meetings/2023-11-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2023-11-20.md -------------------------------------------------------------------------------- /meetings/2023-11-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2023-11-27.md -------------------------------------------------------------------------------- /meetings/2023-12-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2023-12-04.md -------------------------------------------------------------------------------- /meetings/2024-01-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-01-08.md -------------------------------------------------------------------------------- /meetings/2024-01-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-01-15.md -------------------------------------------------------------------------------- /meetings/2024-01-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-01-22.md -------------------------------------------------------------------------------- /meetings/2024-02-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-02-05.md -------------------------------------------------------------------------------- /meetings/2024-02-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-02-12.md -------------------------------------------------------------------------------- /meetings/2024-02-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-02-19.md -------------------------------------------------------------------------------- /meetings/2024-02-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-02-26.md -------------------------------------------------------------------------------- /meetings/2024-03-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-03-04.md -------------------------------------------------------------------------------- /meetings/2024-03-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-03-11.md -------------------------------------------------------------------------------- /meetings/2024-09-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/2024-09-02.md -------------------------------------------------------------------------------- /meetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/meetings/README.md -------------------------------------------------------------------------------- /service-catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/README.md -------------------------------------------------------------------------------- /service-catalog/bastion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/bastion/README.md -------------------------------------------------------------------------------- /service-catalog/bors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/bors/README.md -------------------------------------------------------------------------------- /service-catalog/ci-mirrors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/ci-mirrors/README.md -------------------------------------------------------------------------------- /service-catalog/crater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/crater/README.md -------------------------------------------------------------------------------- /service-catalog/crater/how-to-test-crater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/crater/how-to-test-crater.md -------------------------------------------------------------------------------- /service-catalog/crater/how-to-update-crater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/crater/how-to-update-crater.md -------------------------------------------------------------------------------- /service-catalog/crates-io-auth-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/crates-io-auth-action/README.md -------------------------------------------------------------------------------- /service-catalog/crates-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/crates-io/README.md -------------------------------------------------------------------------------- /service-catalog/datadog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/datadog/README.md -------------------------------------------------------------------------------- /service-catalog/datadog/about-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/datadog/about-permissions.md -------------------------------------------------------------------------------- /service-catalog/dev-desktops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/dev-desktops/README.md -------------------------------------------------------------------------------- /service-catalog/dev-desktops/how-to-increase-disk-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/dev-desktops/how-to-increase-disk-size.md -------------------------------------------------------------------------------- /service-catalog/dev-desktops/how-to-update-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/dev-desktops/how-to-update-system.md -------------------------------------------------------------------------------- /service-catalog/discord-mods-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/discord-mods-bot/README.md -------------------------------------------------------------------------------- /service-catalog/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/dns/README.md -------------------------------------------------------------------------------- /service-catalog/docs-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/docs-rs/README.md -------------------------------------------------------------------------------- /service-catalog/fastly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/fastly/README.md -------------------------------------------------------------------------------- /service-catalog/fastly/how-to-test-cache-invalidations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/fastly/how-to-test-cache-invalidations.md -------------------------------------------------------------------------------- /service-catalog/fastly/website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/fastly/website.md -------------------------------------------------------------------------------- /service-catalog/ibm-runners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/ibm-runners/README.md -------------------------------------------------------------------------------- /service-catalog/infra-smoke-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/infra-smoke-tests/README.md -------------------------------------------------------------------------------- /service-catalog/monitorbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/monitorbot/README.md -------------------------------------------------------------------------------- /service-catalog/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/playground/README.md -------------------------------------------------------------------------------- /service-catalog/releases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/releases/README.md -------------------------------------------------------------------------------- /service-catalog/rfcbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rfcbot/README.md -------------------------------------------------------------------------------- /service-catalog/rust-assets-backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-assets-backup/README.md -------------------------------------------------------------------------------- /service-catalog/rust-assets-backup/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-assets-backup/faq.md -------------------------------------------------------------------------------- /service-catalog/rust-assets-backup/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-assets-backup/implementation.md -------------------------------------------------------------------------------- /service-catalog/rust-assets-backup/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-assets-backup/maintenance.md -------------------------------------------------------------------------------- /service-catalog/rust-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-ci/README.md -------------------------------------------------------------------------------- /service-catalog/rust-ci/average-ci-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-ci/average-ci-time.png -------------------------------------------------------------------------------- /service-catalog/rust-ci/ci-time-by-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-ci/ci-time-by-job.png -------------------------------------------------------------------------------- /service-catalog/rust-ci/how-to-monitor-ci-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-ci/how-to-monitor-ci-time.md -------------------------------------------------------------------------------- /service-catalog/rust-ci/public-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-ci/public-dashboard.md -------------------------------------------------------------------------------- /service-catalog/rust-forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-forge/README.md -------------------------------------------------------------------------------- /service-catalog/rust-log-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rust-log-analyzer/README.md -------------------------------------------------------------------------------- /service-catalog/rustc-perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rustc-perf/README.md -------------------------------------------------------------------------------- /service-catalog/rustup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/rustup/README.md -------------------------------------------------------------------------------- /service-catalog/sync-team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/sync-team/README.md -------------------------------------------------------------------------------- /service-catalog/team-member-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/infra-team/HEAD/service-catalog/team-member-access/README.md --------------------------------------------------------------------------------