From 0280d2ccee11ac9f3b381931cfe9ac095538363b Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sat, 16 May 2020 13:17:00 +0200 Subject: [PATCH] Add push_options to README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0efdded..5db8469 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add the following step at the end of your job, after other steps that might add # Optional branch to push to, defaults to the current branch branch: feature-123 - # Optional git params + # Optional options appended to `git-commit` commit_options: '--no-verify --signoff' # Optional glob pattern of files which should be added to the commit @@ -38,6 +38,9 @@ Add the following step at the end of your job, after other steps that might add # Optional tag message # Action will create and push a new tag to the remote repository and the defined branch tagging_message: 'v1.0.0' + + # Optional options appended to `git-push` + push_options: '--force' ``` ## Example