You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-30Lines changed: 1 addition & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,33 +14,4 @@ Describe how you tested your changes. If possible and needed:
14
14
This should be tested by QA
15
15
16
16
## Release Notes
17
-
<!--
18
-
If we definitely shouldn't add Release Notes, add only N/A.
19
-
20
-
Or enumerate sections, subsections and all changes.
21
-
22
-
Possible sections:
23
-
- Highlights // major features
24
-
- Known Issues // issues planned to be fixed, with possible workarounds
25
-
- Breaking Changes // incompatible changes without deprecation cycle
26
-
- Migration Notes // deprecations, removals, minimal version increases, defined behavior changes
27
-
- Features // minor features
28
-
- Fixes // bug fixes, undefined behavior changes
29
-
30
-
Possible subsections:
31
-
- Multiple Platforms // any module, 2 or more platform changes
32
-
- iOS // any module, iOS-only changes
33
-
- Desktop // any module, Desktop-only changes
34
-
- Web // any module, Web-only changes
35
-
- Android // any module, Android-only changes
36
-
- Resources // specific module, prefer it over the platform ones
37
-
- Gradle Plugin // specific module, prefer it over the platform ones
38
-
- Lifecycle // specific module, prefer it over the platform ones
39
-
- Navigation // specific module, prefer it over the platform ones
40
-
-->
41
-
### Section - Subsection
42
-
- Describe a change for adding it to https://github.com/JetBrains/compose-multiplatform/blob/master/CHANGELOG.md
43
-
-_(prerelease fix)_ Fix some bug that introduced in a prerelease version (alpha/beta/rc). It will be included in a alpha/beta/rc changelog, but excluded from a stable changelog
44
-
45
-
### Section - Subsection
46
-
- Describe another change if needed
17
+
See the format in https://github.com/JetBrains/compose-multiplatform/blob/master/tools/changelog/PR_FORMAT.md
# Reusable GitHub action needed to check Release Notes in the PR description. Used by multiple Compose repositories.
2
+
3
+
name: Check Release Notes in the description
4
+
5
+
inputs:
6
+
checkout_ref:
7
+
type: string
8
+
default: 'master'
9
+
10
+
runs:
11
+
using: "composite"
12
+
steps:
13
+
- uses: actions/checkout@v4
14
+
with:
15
+
repository: JetBrains/compose-multiplatform
16
+
ref: ${{ inputs.checkout_ref }}
17
+
sparse-checkout: 'tools/changelog'
18
+
- name: Check Release Notes in the description
19
+
shell: bash
20
+
env:
21
+
# To avoid injections as suggested in https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
0 commit comments