Skip to content

Commit 674e45b

Browse files
committed
Update to scaffold 0.12.0
1 parent 5d162a8 commit 674e45b

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Checklist before requesting a review
2+
3+
- [ ] I have formatted the subject to include ticket number
4+
as `[#123] Verb in past tense with dot at the end.`
5+
- [ ] I have added a link to the issue tracker
6+
- [ ] I have provided information in `Changed` section about WHY something was
7+
done if this was not a normal implementation
8+
- [ ] I have performed a self-review of my code
9+
- [ ] I have commented my code, particularly in hard-to-understand areas
10+
- [ ] I have added tests that prove my fix is effective or that my feature works
11+
- [ ] I have run new and existing relevant tests locally with my changes, and
12+
they passed
13+
- [ ] I have provided screenshots, where applicable
14+
15+
## Changed
16+
17+
1.
18+
19+
## Screenshots

.github/release-drafter.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
name-template: '$NEXT_MINOR_VERSION'
2-
tag-template: '$NEXT_MINOR_VERSION'
1+
name-template: '$RESOLVED_VERSION'
2+
tag-template: '$RESOLVED_VERSION'
33
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
44
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
5+
version-resolver:
6+
default: minor
57
template: |
68
## What's new since $PREVIOUS_TAG
79

.github/workflows/auto-assign-pr-author.yml .github/workflows/assign-author.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ permissions:
1212
jobs:
1313
assign-author:
1414
runs-on: ubuntu-latest
15+
1516
steps:
16-
- uses: toshimaru/[email protected]
17+
- name: Assign author
18+
uses: toshimaru/[email protected]

.github/workflows/release.yml .github/workflows/draft-release-notes.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@ jobs:
1515
permissions:
1616
contents: write
1717
pull-requests: write
18+
1819
runs-on: ubuntu-latest
20+
1921
steps:
2022
- name: Generate CalVer version
2123
id: calver
2224
run: |
23-
export VERSION="$(date "+%y.%-m").0"
24-
echo "version=${VERSION}" >> $GITHUB_OUTPUT
25+
export VERSION="$(date "+%y.%-m").0"
26+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
2527
echo "Version set to ${VERSION}"
26-
- uses: release-drafter/release-drafter@v6
28+
29+
- name: Draft release notes
30+
uses: release-drafter/release-drafter@v6
2731
with:
2832
tag: ${{ steps.calver.outputs.version }}
2933
name: ${{ steps.calver.outputs.version }}

0 commit comments

Comments
 (0)