update action description
This commit is contained in:
parent
6ae146e422
commit
17563c3632
@ -3,3 +3,5 @@ Gemfile
|
||||
Gemfile.lock
|
||||
LICENSE
|
||||
README.md
|
||||
screenshots
|
||||
.github
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
FROM ruby:2.6.5-alpine
|
||||
|
||||
RUN gem install brakeman
|
||||
|
||||
COPY lib /action/lib
|
||||
|
||||
CMD ["ruby", "/action/lib/index.rb"]
|
||||
|
||||
1
Gemfile
1
Gemfile
@ -3,7 +3,6 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
group :development do
|
||||
gem 'brakeman'
|
||||
gem 'rubocop'
|
||||
end
|
||||
|
||||
|
||||
@ -4,7 +4,6 @@ GEM
|
||||
addressable (2.7.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
ast (2.4.0)
|
||||
brakeman (4.7.1)
|
||||
coderay (1.1.2)
|
||||
crack (0.4.3)
|
||||
safe_yaml (~> 1.0.0)
|
||||
@ -52,7 +51,6 @@ PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
brakeman
|
||||
pry
|
||||
rspec
|
||||
rubocop
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
## Brakeman github action
|
||||
## Coverage check
|
||||
|
||||
Check your coverage percentage.
|
||||
Check your coverage minimum coverage percentage.
|
||||
|
||||
### Usage
|
||||
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
name: "Brakeman linter"
|
||||
description: "A GitHub Action that lints your Ruby code with Brakeman!"
|
||||
name: "Coverage check"
|
||||
description: "A GitHub Action that check minimum coverage percentage!"
|
||||
author: Miguel Savignano
|
||||
branding:
|
||||
icon: "check-square"
|
||||
color: "red"
|
||||
color: "green"
|
||||
inputs:
|
||||
type:
|
||||
description: "simplecov | jest"
|
||||
|
||||
Reference in New Issue
Block a user