mirror of
https://github.com/giraffate/clippy-action.git
synced 2024-11-21 23:49:32 +01:00
Merge pull request #15 from giraffate/update_readme_and_remove_debug
Update readme and remove debug
This commit is contained in:
commit
a6030db3b8
5 changed files with 11 additions and 18 deletions
12
README.md
12
README.md
|
@ -10,21 +10,13 @@ This action runs [Clippy](https://github.com/rust-lang/rust-clippy) with
|
||||||
```yml
|
```yml
|
||||||
name: clippy-action
|
name: clippy-action
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
env:
|
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
jobs:
|
jobs:
|
||||||
clippy:
|
clippy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install latest nightly
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
uses: actions-rs/toolchain@v1
|
- uses: giraffate/clippy-action@main
|
||||||
with:
|
|
||||||
toolchain: nightly
|
|
||||||
override: true
|
|
||||||
components: rustfmt, clippy
|
|
||||||
- name: clippy-action
|
|
||||||
uses: giraffate/clippy-action@main
|
|
||||||
with:
|
with:
|
||||||
reporter: 'github-pr-review'
|
reporter: 'github-pr-review'
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
15
action.yml
15
action.yml
|
@ -1,11 +1,18 @@
|
||||||
name: 'Run Clippy with reviewdog'
|
name: 'Run Clippy with reviewdog'
|
||||||
description: 'Provide a description here'
|
description: '🐶 Run Clippy with reviewdog on pull requests to improve code review experience'
|
||||||
author: 'Your name or organization here'
|
author: 'Takayuki Nakata'
|
||||||
|
branding:
|
||||||
|
icon: "check-circle"
|
||||||
|
color: "blue"
|
||||||
inputs:
|
inputs:
|
||||||
github_token:
|
github_token:
|
||||||
description: "GITHUB_TOKEN."
|
description: "GITHUB_TOKEN."
|
||||||
required: true
|
required: true
|
||||||
default: ${{ github.token }}
|
default: ${{ github.token }}
|
||||||
|
clippy_flags:
|
||||||
|
description: "clippy flags. (cargo clippy --color never -q --message-format json `<clippy_flags>`)"
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
tool_name:
|
tool_name:
|
||||||
description: "Tool name to use for reviewdog reporter"
|
description: "Tool name to use for reviewdog reporter"
|
||||||
required: false
|
required: false
|
||||||
|
@ -42,10 +49,6 @@ inputs:
|
||||||
description: "the version of reviewdog"
|
description: "the version of reviewdog"
|
||||||
required: false
|
required: false
|
||||||
default: latest
|
default: latest
|
||||||
cache:
|
|
||||||
deprecation: "enable cache"
|
|
||||||
default: true
|
|
||||||
required: false
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node16'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|
BIN
dist/index.js
generated
vendored
BIN
dist/index.js
generated
vendored
Binary file not shown.
BIN
dist/index.js.map
generated
vendored
BIN
dist/index.js.map
generated
vendored
Binary file not shown.
|
@ -75,8 +75,6 @@ async function run(): Promise<void> {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
core.info(`debug: ${output.join('\n')}`)
|
|
||||||
|
|
||||||
process.env['REVIEWDOG_GITHUB_API_TOKEN'] =
|
process.env['REVIEWDOG_GITHUB_API_TOKEN'] =
|
||||||
core.getInput('github_token')
|
core.getInput('github_token')
|
||||||
return await exec.exec(
|
return await exec.exec(
|
||||||
|
|
Loading…
Reference in a new issue