Skip to content

Commit fefb4ab

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 6c7855c commit fefb4ab

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/ISSUE_TEMPLATE/task.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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 or closed-source
21+
Apple frameworks such as UIKit and SwiftUI; please direct them to
22+
[feedbackassistant.apple.com](https://feedbackassistant.apple.com)
23+
instead.
24+
- type: textarea
25+
attributes:
26+
label: Description
27+
description: >
28+
A comprehensive description of the task, in human language.
29+
validations:
30+
required: true
31+
- type: textarea
32+
attributes:
33+
label: Additional information
34+
description: >
35+
Any complementary information that could be valuable to an implementor.
36+
validations:
37+
required: false

0 commit comments

Comments
 (0)