We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c9d717 commit 09298e3Copy full SHA for 09298e3
2 files changed
.github/ISSUE_TEMPLATE/release.yaml
@@ -0,0 +1,20 @@
1
+name: 🚀 Release
2
+description: Build and deploy a new release
3
+title: Release tracking issue
4
+labels: [chore]
5
+type: Task
6
+body:
7
+ - type: textarea
8
+ id: release-notes
9
+ attributes:
10
+ label: Release notes
11
+ description: Write something nice about the new release.
12
+ placeholder: "Here's our latest awesome release!"
13
+ validations:
14
+ required: true
15
+ - type: checkboxes
16
+ id: production
17
18
+ label: Release type
19
+ options:
20
+ - label: Production release
.github/workflows/release.yml
@@ -1,7 +1,8 @@
name: release
on:
- workflow_dispatch:
+ issues:
+ types: [opened, assigned]
# Cancel old builds when pushing new commits.
concurrency:
0 commit comments