Skip to content

Commit

Permalink
Feature/action file (#1)
Browse files Browse the repository at this point in the history
* Let's try this

* Let's add node

* Adding node_modules

* Erasing node_modules

* Using zeit
  • Loading branch information
danitico authored Mar 16, 2020
1 parent 3affd18 commit 5ad5886
Show file tree
Hide file tree
Showing 44 changed files with 6,748 additions and 142 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
node_modules/
node_modules
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Danger Action

Just an action using danger

## Inputs

### `JiraTag`

**Required** Default `""`.
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: 'Danger action'
description: 'A danger action to add to your CI'
inputs:
JiraTag:
description: 'Your repo tag in JIRA'
required: false
default: ''
runs:
using: 'node12'
main: 'dist/index.js'
3 changes: 3 additions & 0 deletions dangerfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { markdown } from "danger";

markdown(process.env['JIRA_TAG'])
Loading

0 comments on commit 5ad5886

Please sign in to comment.