-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add release-drafter.yml (#181)
* feat: add .github/workflows/release-drafter.yml * feat: add .github/workflows/release-drafter.yml * change token name
- Loading branch information
1 parent
c5a20f0
commit 5091801
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_extends: .github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into the default branch | ||
- uses: release-drafter/release-drafter@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CPP_LINTER_TOKEN }} |
5091801
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cpp-Linter Report⚠️
Some files did not pass the configured checks!
clang-format reports: 2 file(s) not formatted
clang-tidy reports: 7 concern(s)
src/demo.cpp
C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.38.33130/include/yvals_core.h:887:1: error: [clang-diagnostic-error]
src/demo.cpp:7:8: warning: [modernize-use-trailing-return-type]
src/demo.cpp:9:5: warning: [modernize-use-trailing-return-type]
src/demo.cpp:11:13: warning: [readability-braces-around-statements]
for (;;) ^ {
src/demo.cpp:14:5: warning: [cppcoreguidelines-pro-type-vararg]
src/demo.hpp
src/demo.hpp:10:11: warning: [modernize-use-trailing-return-type]
src/demo.hpp:12:16: warning: [modernize-use-nullptr]
Have any feedback or feature suggestions? Share it here.