From 730dbbb7b7e59d3409c78a4589066c8846ff21c5 Mon Sep 17 00:00:00 2001 From: Jesse Ponugoti Date: Thu, 3 Mar 2022 10:46:30 -0700 Subject: [PATCH] Remove config requirement based on action.yml Based on [action.yml](https://github.com/ahmadnassri/action-dependabot-auto-merge/blob/master/action.yml#L16), a config file is not required for this action to run. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 606e3835..5cfd551a 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ steps: | input | required | default | description | |----------------|----------|--------------------------|-----------------------------------------------------| | `github-token` | ✔ | `github.token` | The GitHub token used to merge the pull-request | -| `config` | ✔ | `.github/auto-merge.yml` | Path to configuration file *(relative to root)* | +| `config` | ❌ | `.github/auto-merge.yml` | Path to configuration file *(relative to root)* | | `target` | ❌ | `patch` | The version comparison target (major, minor, patch) | | `command` | ❌ | `merge` | The command to pass to Dependabot | | `botName` | ❌ | `dependabot` | The bot to tag in approve/comment message. |