Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Release

on:
release:
types: [ created ]
workflow_dispatch:

jobs:
npm:
Expand All @@ -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:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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.

### [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))
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down