@vavt/github-action-test 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/latest.yml +7 -0
- package/CHANGELOG.md +23 -0
- package/package.json +1 -1
- package/src/main.jsx +1 -1
|
@@ -44,6 +44,8 @@ jobs:
|
|
|
44
44
|
tag_name: ${{ github.ref_name }}
|
|
45
45
|
generate_release_notes: true
|
|
46
46
|
make_latest: true
|
|
47
|
+
body: |
|
|
48
|
+
See full changelog in [`CHANGELOG.md`](https://github.com/${{ github.repository }}/blob/${{ github.event.repository.default_branch }}/CHANGELOG.md).
|
|
47
49
|
env:
|
|
48
50
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
49
51
|
|
|
@@ -74,11 +76,15 @@ jobs:
|
|
|
74
76
|
|
|
75
77
|
if [ -n "${PREV_TAG}" ]; then
|
|
76
78
|
RANGE="${PREV_TAG}..${TAG_NAME}"
|
|
79
|
+
COMPARE_FROM="${PREV_TAG}"
|
|
77
80
|
else
|
|
78
81
|
ROOT_COMMIT="$(git rev-list --max-parents=0 "${TAG_NAME}" | tail -n1)"
|
|
79
82
|
RANGE="${ROOT_COMMIT}..${TAG_NAME}"
|
|
83
|
+
COMPARE_FROM="${ROOT_COMMIT}"
|
|
80
84
|
fi
|
|
81
85
|
|
|
86
|
+
COMPARE_URL="${REPO_URL}/compare/${COMPARE_FROM}...${TAG_NAME}"
|
|
87
|
+
|
|
82
88
|
FEATURES_FILE='/tmp/changelog-features.md'
|
|
83
89
|
REFACTORS_FILE='/tmp/changelog-refactors.md'
|
|
84
90
|
FIXES_FILE='/tmp/changelog-fixed-bugs.md'
|
|
@@ -143,6 +149,7 @@ jobs:
|
|
|
143
149
|
write_section 'Refactors' "${REFACTORS_FILE}"
|
|
144
150
|
write_section 'Fixed Bugs' "${FIXES_FILE}"
|
|
145
151
|
write_section 'Others' "${OTHERS_FILE}"
|
|
152
|
+
printf '**Full Changelog**: [%s...%s](%s)\n\n' "${COMPARE_FROM}" "${TAG_NAME}" "${COMPARE_URL}"
|
|
146
153
|
printf -- '---\n'
|
|
147
154
|
} > /tmp/release-entry.md
|
|
148
155
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
<!-- next-release -->
|
|
3
|
+
|
|
4
|
+
## 0.4.0 (2026-02-28)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
- 1 ([3d0c750](https://github.com/imzbf/github-action-test/commit/3d0c75081edc8a6238bbfd8c8cdecde87e53f752))
|
|
9
|
+
|
|
10
|
+
### Refactors
|
|
11
|
+
|
|
12
|
+
- 33333333 ([fe2153a](https://github.com/imzbf/github-action-test/commit/fe2153af62cac3681babd16fd777734f926f5bce))
|
|
13
|
+
|
|
14
|
+
### Fixed Bugs
|
|
15
|
+
|
|
16
|
+
- 123123123123 ([ad380fe](https://github.com/imzbf/github-action-test/commit/ad380feabda632877594429b9d9e86f5558527c3))
|
|
17
|
+
|
|
18
|
+
### Others
|
|
19
|
+
|
|
20
|
+
- docs: 123123 ([24cf69b](https://github.com/imzbf/github-action-test/commit/24cf69b730c671cf22c37b29eb25fff123d8a6fd))
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
1
24
|
## 0.3.0 (2026-02-28)
|
|
2
25
|
|
|
3
26
|
---
|
package/package.json
CHANGED
package/src/main.jsx
CHANGED