Skip to content

Commit 9cfc2c6

Browse files
authored
Merge pull request #1402 from syphar/issue-forms
use new github issue forms for build-failure and sandbox-limits templates
2 parents b7e1eea + 0696ee6 commit 9cfc2c6

File tree

4 files changed

+58
-40
lines changed

4 files changed

+58
-40
lines changed

.github/ISSUE_TEMPLATE/crate-build-failure.md

-19
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Crate Build Failure
3+
description: My crate failed to build in docs.rs.
4+
labels: build-failure
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
If you need a system dependency added for your crate to build, consider making a PR to [rust-lang/crates-build-env](https://github.com/rust-lang/crates-build-env) instead of opening an issue here. There are detailed instructions for this [on this page](https://forge.rust-lang.org/docs-rs/add-dependencies.html).
10+
- type: input
11+
attributes:
12+
label: Crate name
13+
validations:
14+
required: true
15+
- type: input
16+
attributes:
17+
label: Build failure link
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Additional details

.github/ISSUE_TEMPLATE/sandbox-limits-increase-request.md

-21
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Sandbox Limits Increase Request
3+
description: My crate build won't complete within the sandbox limits.
4+
labels: limits-increase
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please note we *won't* enable network access or allow the crate to write in read-only directories, to avoid compromising the security of docs.rs itself.
10+
- type: input
11+
attributes:
12+
label: Crate name
13+
validations:
14+
required: true
15+
- type: input
16+
attributes:
17+
label: Build failure link
18+
validations:
19+
required: true
20+
- type: input
21+
attributes:
22+
label: Requested RAM limit
23+
placeholder: "default: 3 GB"
24+
- type: input
25+
attributes:
26+
label: Requested timeout
27+
placeholder: "default: 15 minutes"
28+
- type: input
29+
attributes:
30+
label: Requested number of targets
31+
placeholder: "default: 10"
32+
- type: textarea
33+
attributes:
34+
label: Why your crate needs the resource increases
35+
validations:
36+
required: true

0 commit comments

Comments
 (0)