From f4acf09c43ad34ae6fff0f235dce63f03316545e Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Fri, 30 Apr 2021 11:43:24 +0200 Subject: [PATCH] fix: remove github from action name --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 94ed054..c4348ed 100644 --- a/action.yml +++ b/action.yml @@ -1,12 +1,12 @@ -name: 'Auto approve/merge GitHub-native Dependabot PR' -description: 'GitHub Action for auto-approving and auto-merging GitHub-native Dependabot pull requests.' +name: 'Auto approve/merge Dependabot (native) PR' +description: 'Auto approve and merge Dependabot (native) pull-requests.' inputs: github-token: description: 'The GitHub token to use for auto-approving and auto-merging, can be ${{ secrets.GITHUB_TOKEN }}.' required: true update-type: description: 'Type of update for auto-merging, can be "major", "minor" or "patch".' - default: 'all', + default: 'all' required: false runs: using: 'node12'