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
# Configuration for Release Drafter: https://github.com/toolmantim/release-drafter
1
+
# Configuration for Release Drafter: https://github.com/release-drafter/release-drafter
2
2
_extends: .github
3
-
4
-
# Override the template to include default tool versions
5
-
template: |
6
-
<!-- Optional: add a release summary here -->
7
-
8
-
## Default Clang Tools Versions for this release
9
-
10
-
- **clang-format**: `$CLANG_FORMAT_VERSION`
11
-
- **clang-tidy**: `$CLANG_TIDY_VERSION`
12
-
13
-
You can override the default versions by adding the `--version` argument under `args` in your pre-commit configuration. For details, see [Custom Clang Tool Version](https://github.com/cpp-linter/cpp-linter-hooks?tab=readme-ov-file#custom-clang-tool-version)
echo "You can override the default versions for this release by adding the \`--version\` argument under \`args\` in your pre-commit configuration. For details, see [Custom Clang Tool Version](https://github.com/cpp-linter/cpp-linter-hooks?tab=readme-ov-file#custom-clang-tool-version)" >> release_notes.md
53
+
echo "" >> release_notes.md
54
+
cat release_notes.md
55
+
56
+
# Export release notes content to env variable for Release Drafter
57
+
echo "RELEASE_BODY<<EOF" >> $GITHUB_ENV
58
+
cat release_notes.md >> $GITHUB_ENV
59
+
echo "EOF" >> $GITHUB_ENV
60
+
42
61
# Draft your next Release notes as Pull Requests are merged into the default branch
0 commit comments