Skip to content

Commit

Permalink
Initial project
Browse files Browse the repository at this point in the history
  • Loading branch information
minchao committed Nov 29, 2019
0 parents commit 0c3bddd
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.yml]
indent_style = space
indent_size = 2
Empty file added .gitignore
Empty file.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ruby:2.5-alpine3.10

RUN gem install cfn-nag --no-format-exec

ENTRYPOINT ["cfn_nag_scan"]

CMD ["--help"]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# GitHub Action for CFN_NAG

This Action for [cfn-nag](https://github.com/stelligent/cfn_nag).
9 changes: 9 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: 'cfn-nag-action'
author: 'Minchao <[email protected]>'
description: 'GitHub Action for cfn_nag'
branding:
icon: 'check-circle'
color: 'yellow'
runs:
using: 'docker'
image: 'Dockerfile'

0 comments on commit 0c3bddd

Please sign in to comment.