From 57befac457c53c3a67c4d308191abb367cb6f4da Mon Sep 17 00:00:00 2001 From: Federico Grandi Date: Thu, 28 Nov 2019 21:41:00 +0100 Subject: [PATCH] Fix typo Corrected "release" into "tag" --- .github/workflows/latest-tag.yml | 2 +- README.md | 4 ++-- action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/latest-tag.yml b/.github/workflows/latest-tag.yml index a1d186a..6bc2a0a 100644 --- a/.github/workflows/latest-tag.yml +++ b/.github/workflows/latest-tag.yml @@ -14,6 +14,6 @@ jobs: - name: Run latest-tag uses: ./. with: - description: This release has been auto-generated by this action. You can check the workflow in this repository ;) + description: This tag has been auto-generated by this action. You can check the workflow in this repository ;) env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index f69faae..7bdbd8e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ That's why I made this action: if you're the kind of guy that doesn't like to up These are the parameters you can use with the action: -- `description`: [optional] Description for the release +- `description`: [optional] Description for the tag ## Usage @@ -35,7 +35,7 @@ jobs: - name: Run latest-tag uses: EndBug/latest-tag@latest with: - description: Description for the release + description: Description for the tag env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged ``` diff --git a/action.yml b/action.yml index 748dc4a..bf6b1c1 100644 --- a/action.yml +++ b/action.yml @@ -11,6 +11,6 @@ branding: inputs: description: - description: 'Description for the release' + description: 'Description for the tag' required: false default: 'This tag has been auto-generated by latest-tag'