action template
v1.19.1
這是一個用於具有發布自動化功能的 reviewdog 操作的模板存儲庫。點擊Use this template
按鈕來創建您的 reviewdog 操作?
如果您想從頭開始創建自己的 reviewdog 操作而不使用此模板,請檢查並複製發布自動化流程。管理發布工作流程並同步所有 reviewdog 操作的 reviewdog 版本非常重要。
此儲存庫包含一個運行拼字錯誤的範例操作。
inputs :
github_token :
description : ' GITHUB_TOKEN '
default : ' ${{ github.token }} '
workdir :
description : ' Working directory relative to the root directory. '
default : ' . '
# ## Flags for reviewdog ###
level :
description : ' Report level for reviewdog [info,warning,error] '
default : ' error '
reporter :
description : ' Reporter of reviewdog command [github-pr-check,github-check,github-pr-review]. '
default : ' github-pr-check '
filter_mode :
description : |
Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
default : ' added '
fail_on_error :
description : |
Exit code for reviewdog when errors are found [true,false]
Default is `false`.
default : ' false '
reviewdog_flags :
description : ' Additional reviewdog flags '
default : ' '
# ## Flags for <linter-name> ###
locale :
description : ' -locale flag of misspell. (US/UK) '
default : ' '
name : reviewdog
on : [pull_request]
jobs :
# TODO: change `linter_name`.
linter_name :
name : runner / <linter-name>
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v4
- uses : reviewdog/action-template@v1
with :
github_token : ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter : github-pr-review
# Change reporter level if you need.
# GitHub Status Check won't become failure with warning.
level : warning
您可以在合併帶有特定標籤的 Pull 請求時提高版本(bump:major、bump:minor、bump:patch)。自己手動推送標籤也可以。
此操作會更新標籤推送上的主要/次要版本標籤。例如,發布 v1.2.3 時更新 v1 和 v1.2 標籤。參考:https://help.github.com/en/articles/about-actions#versioning-your-action
此 reviewdog 操作模板本身與 reviewdog 整合以運行 lints,這對於基於 Docker 容器的操作非常有用。
支持的短絨:
該儲存庫使用 reviewdog/action-depup 來更新 reviewdog 版本。