From 54369a2a5ae41d10746657cbe5682fe642746bbd Mon Sep 17 00:00:00 2001 From: James Oliver Date: Mon, 13 Jun 2022 20:01:21 +0100 Subject: [PATCH 1/4] chore(release): 1.0.1 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4d6f0e4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + diff --git a/package-lock.json b/package-lock.json index a61a142..f2c2d42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "license": "Unlicense", "dependencies": { "commander": "^9.3.0" diff --git a/package.json b/package.json index ae8e3bd..df38502 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "description": "GitLab Code Quality generator for IBM's OpenAPI Validator.", "main": "bin/index.js", "bin": { From e97527b4365c932bb2dd229d695d847add81828c Mon Sep 17 00:00:00 2001 From: James Oliver Date: Mon, 13 Jun 2022 20:22:09 +0100 Subject: [PATCH 2/4] docs: recreates changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6f0e4..ed5bff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.0.1](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/compare/v1.0.0...v1.0.1) (2022-06-13) +## [1.0.0](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/compare/e32285d1baedbb90759a59362ea16caf8266d796...v1.0.0) (2022-06-13) + + +### Features + +* adds release workflow ([c77c0e0](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/commit/c77c0e009f3e43c16e19f6541ca2eb7821c4f634)) + + +### Bug Fixes + +* adds fix for git revisions ([e32285d](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/commit/e32285d1baedbb90759a59362ea16caf8266d796)) From df2afd422d8be8b491176296102ff77544a98bd5 Mon Sep 17 00:00:00 2001 From: James Oliver Date: Mon, 13 Jun 2022 20:22:53 +0100 Subject: [PATCH 3/4] ci: makes workflow manual trigger --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1dc648c..6eec818 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,7 @@ name: Release on: - release: - types: [ created ] + workflow_dispatch: jobs: npm: @@ -24,7 +23,7 @@ jobs: - name: Install Dependencies run: npm ci - name: Generate Changelog - run: npx standard-version --skip.tag + run: npx standard-version - name: Publish run: npm publish env: From 26fb71d73d87778c88496e93e835d789b85d5f4b Mon Sep 17 00:00:00 2001 From: James Oliver Date: Mon, 13 Jun 2022 20:24:23 +0100 Subject: [PATCH 4/4] docs: updates release workflow entry --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 083fb75..86366e0 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ linting, testing, and releasing. ### Build Workflow The [build](./.github/workflows/build.yml) workflow handles integration tasks. This workflow consists of two jobs, `Git` -and `Node`, that run in parallel. +and `Node`, that run in parallel. This workflow is triggered on a push to a branch. #### Git @@ -168,6 +168,8 @@ This job automates `Node.js` specific tasks. ### Release Workflow The [release](./.github/workflows/release.yml) workflow handles release tasks. This workflow consists of one job, `npm`. +This workflow is triggered manually from +the [GitHub Actions UI](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/actions). #### npm