From 9c7b26e6cbb5cc479d08d9fea1da16ebab3d15dc Mon Sep 17 00:00:00 2001 From: Enda Date: Fri, 7 May 2021 17:55:50 +0100 Subject: [PATCH 1/6] ci: use v1 (#3) --- .github/workflows/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index b6ccb9a..959c486 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,7 +16,7 @@ jobs: - name: Install git-chglog - uses: craicoverflow/install-git-chglog@v0.3.1 + uses: craicoverflow/install-git-chglog@v1 - name: Generate a CHANGELOG From 6d338c1d96dcbf12a2115fbe8e5b9817293aae33 Mon Sep 17 00:00:00 2001 From: Enda Phelan Date: Fri, 7 May 2021 17:59:06 +0100 Subject: [PATCH 2/6] ci: specify explicit version --- .github/workflows/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 959c486..c94b143 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,7 +16,7 @@ jobs: - name: Install git-chglog - uses: craicoverflow/install-git-chglog@v1 + uses: craicoverflow/install-git-chglog@v1.0.0 - name: Generate a CHANGELOG From af0e3cf576ada51b5099ca60cc0a3fcb865de3b7 Mon Sep 17 00:00:00 2001 From: craicoverflow Date: Fri, 7 May 2021 16:59:50 +0000 Subject: [PATCH 3/6] chore: update CHANGELOG --- CHANGELOG.md | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ecca93..d9aeb66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,30 +1,11 @@ - -## [v0.3.2](https://github.com/redhat-developer/app-services-cli/compare/v0.3.1...v0.3.2) (2021-05-07) - - - -## [v0.3.1](https://github.com/redhat-developer/app-services-cli/compare/v0.3.0...v0.3.1) (2021-05-07) + +## v1.0.0 (2021-05-07) ### Bug Fixes * get full path to binary * get full path to binary - - - -## [v0.3.0](https://github.com/redhat-developer/app-services-cli/compare/v0.2.0...v0.3.0) (2021-05-07) - - - -## [v0.2.0](https://github.com/redhat-developer/app-services-cli/compare/v0.1.0...v0.2.0) (2021-05-07) - -### Bug Fixes - * do not execute git-chglog * do not execute git-chglog - - -## v0.1.0 (2021-05-07) - From 7ddc591f0a0082bd3545035e57e74ff5744e34e7 Mon Sep 17 00:00:00 2001 From: Enda Date: Mon, 10 May 2021 08:56:43 +0100 Subject: [PATCH 4/6] chore: improve input description (#4) --- .github/workflows/changelog.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index c94b143..959c486 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,7 +16,7 @@ jobs: - name: Install git-chglog - uses: craicoverflow/install-git-chglog@v1.0.0 + uses: craicoverflow/install-git-chglog@v1 - name: Generate a CHANGELOG diff --git a/action.yml b/action.yml index fb63dbc..c660652 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ branding: inputs: version: - description: 'git-chglog version' + description: 'Specify which git-chglog version to use' default: 'latest' required: false From 590f178ee233ae605a77d02b040430cc73f25188 Mon Sep 17 00:00:00 2001 From: Enda Date: Mon, 10 May 2021 09:00:45 +0100 Subject: [PATCH 5/6] ci: run CHANGELOG on new tag (#5) --- .github/workflows/changelog.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 959c486..79e5487 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -3,7 +3,9 @@ on: push: branches: - main - - refs/tags/* + tags: + - '*' + jobs: generate_changelog: runs-on: ubuntu-latest From fd5ace93851e0e2a8deb0b3c31a07c79cb76fcf2 Mon Sep 17 00:00:00 2001 From: Enda Date: Mon, 12 Sep 2022 09:43:54 +0100 Subject: [PATCH 6/6] Create LICENSE (#7) --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d396dbf --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Enda Phelan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.