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 版本。