Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Jul 2, 2024
1 parent 62ecf0e commit 16d2c3c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Commit CHANGELOG.md, create a Release of this repo (not reusable)

on:
workflow_dispatch:
inputs:
version-tag:
description: Version tag
required: true
default: v0.1.0
dry-run:
description: Dry run
type: boolean
default: false

jobs:
commit-changelog-and-release:
uses: deargen/workflows/.github/workflows/commit-changelog-and-release.yml@master
with:
version-tag: ${{ github.event.inputs.version-tag }}
dry-run: ${{ github.event.inputs.dry-run }}
changelog-path: docs/CHANGELOG.md
exclude-types: build,docs,style,other
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

0 comments on commit 16d2c3c

Please sign in to comment.