-
Notifications
You must be signed in to change notification settings - Fork 46
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
390 changed files
with
17,598 additions
and
87,696 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 @@ | ||
dist/ |
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,19 @@ | ||
{ | ||
"env": { | ||
"commonjs": true, | ||
"es6": true, | ||
"jest": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 11, | ||
"sourceType": "module" | ||
}, | ||
"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,2 @@ | ||
dist/ | ||
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,8 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid" | ||
} |
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 |
---|---|---|
|
@@ -123,6 +123,11 @@ You can add these optional parameters in your action script to modify the appear | |
| committer_username | contrib-readme-bot | Username on commit | false | | ||
| committer_email | email id of committer | [email protected] | false | | ||
|
||
## TO-Do | ||
|
||
- [ ] graphql migration | ||
- [ ] sponser command support | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | ||
|
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,37 +1,37 @@ | ||
name: "Contribute List" | ||
description: "Automation of contributors list in README.md" | ||
name: 'Contribute List' | ||
description: 'Automation of contributors list in README.md' | ||
inputs: | ||
image_size: # id of input | ||
description: "Size of square images in the stack" | ||
description: 'Size of square images in the stack' | ||
required: false | ||
default: "100" | ||
default: '100' | ||
readme_path: | ||
description: "Path of the readme file you want to update" | ||
default: "README.md" | ||
description: 'Path of the readme file you want to update' | ||
default: 'README.md' | ||
required: false | ||
columns_per_row: # id of input | ||
description: "Number of columns in a row" | ||
description: 'Number of columns in a row' | ||
required: false | ||
default: "6" | ||
default: '6' | ||
collaborators: # id of input | ||
description: "Type of collaborators options: all/direct/outside" | ||
description: 'Type of collaborators options: all/direct/outside' | ||
required: false | ||
default: "direct" | ||
default: 'direct' | ||
commit_message: | ||
description: "Commit message of the github action" | ||
default: "contrib-readme-action has updated readme" | ||
description: 'Commit message of the github action' | ||
default: 'contrib-readme-action has updated readme' | ||
required: false | ||
committer_username: | ||
description: "Username on commit" | ||
default: "contrib-readme-bot" | ||
description: 'Username on commit' | ||
default: 'contrib-readme-bot' | ||
required: false | ||
committer_email: | ||
description: "email id of committer" | ||
default: "[email protected]" | ||
description: 'email id of committer' | ||
default: '[email protected]' | ||
required: false | ||
runs: | ||
using: "node12" | ||
main: "index.js" | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
branding: | ||
icon: "archive" | ||
color: "black" | ||
icon: 'archive' | ||
color: 'black' |
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,12 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
node: 'current' | ||
} | ||
} | ||
] | ||
] | ||
}; |
Oops, something went wrong.