forked from fastify/github-action-merge-dependabot
-
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.
feat: using gh app for merging (#15)
- Loading branch information
Showing
377 changed files
with
7,331 additions
and
88,627 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,14 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"parserOptions": { | ||
"sourceType": "script", | ||
"ecmaVersion": 2020 | ||
}, | ||
"rules": { | ||
"strict": ["error", "global"] | ||
} | ||
} |
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
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 +1,2 @@ | ||
.vscode | ||
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
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,24 +1,28 @@ | ||
name: "Github Action Merge Dependabot" | ||
description: "Automatically approve and merge dependabot PRs" | ||
name: 'Github Action Merge Dependabot' | ||
description: 'Automatically approve and merge dependabot PRs' | ||
inputs: | ||
github-token: | ||
description: "A GitHub token" | ||
description: 'A GitHub token' | ||
required: true | ||
exclude: | ||
description: "Packages that you want to manually review before upgrading" | ||
description: 'Packages that you want to manually review before upgrading' | ||
required: false | ||
approve-only: | ||
description: "If true, the PR is only approved but not merged" | ||
description: 'If true, the PR is only approved but not merged' | ||
required: false | ||
default: false | ||
merge-method: | ||
description: "The merge method you would like to use (squash, merge, rebase)" | ||
description: 'The merge method you would like to use (squash, merge, rebase)' | ||
required: false | ||
default: "squash" | ||
default: 'squash' | ||
merge-comment: | ||
description: "An arbitrary message that you'd like to comment on the PR after it gets auto-merged" | ||
required: false | ||
default: "" | ||
default: '' | ||
api-url: | ||
description: 'Url of the API where the application is running' | ||
required: false | ||
default: 'https://dependabot-merge-action-app.herokuapp.com/' | ||
runs: | ||
using: "node12" | ||
main: "src/index.js" | ||
using: 'node12' | ||
main: 'dist/index.js' |
Oops, something went wrong.