Skip to content

Commit c9c2dec

Browse files
committed
.github: Add an issue template for tasks
Tasks can be used to track internal work, extract individual subtasks from a larger issue, and can serve as umbrella issues themselves.
1 parent ef0cb1e commit c9c2dec

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/ISSUE_TEMPLATE/task.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This source file is part of the Swift.org open source project
2+
#
3+
# Copyright (c) 2023 Apple Inc. and the Swift project authors
4+
# Licensed under Apache License v2.0 with Runtime Library Exception
5+
#
6+
# See https://swift.org/LICENSE.txt for license information
7+
# See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
8+
9+
name: ⚙️ Track a task
10+
description: >
11+
Tasks can be used to track internal work, extract individual subtasks from a
12+
larger issue, and can serve as umbrella issues themselves.
13+
labels: [task, triage needed]
14+
body:
15+
- type: markdown
16+
attributes:
17+
value: >
18+
This repository hosts the Swift compiler, the Swift standard library,
19+
the Swift runtime, SourceKit, and IDE support for the Swift language.
20+
It does *not* track issues with or requests for Xcode and other
21+
closed-source Apple software such as SwiftUI and UIKit; please direct
22+
them to
23+
[feedbackassistant.apple.com](https://feedbackassistant.apple.com)
24+
instead.
25+
- type: textarea
26+
attributes:
27+
label: Description
28+
description: >
29+
A comprehensive description of the task, in human language.
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Additional information
35+
description: >
36+
Any complementary information that could be valuable to an implementor.
37+
validations:
38+
required: false

0 commit comments

Comments
 (0)