Skip to content

Commit

Permalink
Merge branch 'development-v3'
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilmhdh committed Nov 24, 2020
2 parents 70aacd2 + 50ad9c7 commit c3cfe71
Show file tree
Hide file tree
Showing 390 changed files with 17,598 additions and 87,696 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
19 changes: 19 additions & 0 deletions .eslintrc.json
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": {
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist/
node_modules/
8 changes: 8 additions & 0 deletions .prettierrc.json
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"
}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
40 changes: 20 additions & 20 deletions action.yml
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'
12 changes: 12 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current'
}
}
]
]
};
Loading

0 comments on commit c3cfe71

Please sign in to comment.