-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Peter Evans
committed
Nov 24, 2019
1 parent
911d287
commit eaa4371
Showing
7 changed files
with
17,237 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "env": { | ||
| "commonjs": true, | ||
| "es6": true, | ||
| "node": true | ||
| }, | ||
| "extends": "eslint:recommended", | ||
| "globals": { | ||
| "Atomics": "readonly", | ||
| "SharedArrayBuffer": "readonly" | ||
| }, | ||
| "parserOptions": { | ||
| "ecmaVersion": 2018 | ||
| }, | ||
| "rules": { | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: 'Create or Update Comment' | ||
| description: 'Create or update an issue or pull request comment' | ||
| inputs: | ||
| token: | ||
| description: 'A GitHub access token.' | ||
| required: true | ||
| repository: | ||
| description: 'The full name of the repository to create or update a comment.' | ||
| issue-number: | ||
| description: 'The number of the issue in which to create a comment.' | ||
| comment-id: | ||
| description: 'The id of the comment to update.' | ||
| body: | ||
| description: 'The comment body.' | ||
| edit-mode: | ||
| description: 'The mode when updating a comment, "replace" or "append".' | ||
| reaction-type: | ||
| description: 'The reaction to add to the comment.' | ||
| runs: | ||
| using: 'node12' | ||
| main: 'dist/index.js' | ||
| branding: | ||
| icon: 'message-square' | ||
| color: 'gray-dark' |
Oops, something went wrong.