forked from int128/hide-comment-action
-
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
Showing
14 changed files
with
24,334 additions
and
66 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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ | ||
node_modules/ | ||
generated/ |
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
name: hello-world | ||
description: say Hello World | ||
name: hide-comment | ||
description: hide comment(s) in a pull request | ||
inputs: | ||
name: | ||
description: example input | ||
authors: | ||
description: multi-line string of author filter | ||
required: true | ||
default: github-actions | ||
starts-with: | ||
description: multi-line string of starts-with filter | ||
required: true | ||
token: | ||
description: GitHub token to post a comment | ||
required: true | ||
default: ${{ github.token }} | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' |
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,14 @@ | ||
overwrite: true | ||
schema: src/generated/octokit-graphql-schema.js | ||
documents: | ||
- src/queries/*.ts | ||
generates: | ||
src/generated/graphql-types.ts: | ||
plugins: | ||
- typescript | ||
src/generated/graphql.ts: | ||
plugins: | ||
- typescript-operations | ||
preset: import-types | ||
presetConfig: | ||
typesPath: ./graphql-types |
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
Oops, something went wrong.