From dfdd2fa076a156f93dcc19e35b383589096d7731 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Tue, 2 Apr 2024 10:48:05 +0800 Subject: [PATCH] Update README example for v1.1 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 41876cf..3e20af7 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ Add following step to your workflow: ```yaml -- uses: dev-drprasad/delete-tag-and-release@v1.2 +- uses: dev-drprasad/delete-tag-and-release@v1.1 with: tag_name: v0.1.2 #(required) - The name of the tag to delete. This is expected to be solely the tag name, not the name of a git reference. - delete_release: true #(optional) default: true - also delete releases and their assets that are associated to the tag name + delete_release: true #(optional) default: true - also delete all releases and their assets that are associated to the tag name repo: / #(optional) default: repo running this action - the target repository. - github_token: ${{ secrets.GITHUB_TOKEN }} # (required) - a GitHub token with write access to the repo that needs to be modified + github_token: ${{ secrets.GITHUB_TOKEN }} # (required) - a GitHub token with write access to the repo where tags and releases will be searched and deleted ``` ## Developing