Skip to content

Commit

Permalink
added release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
graemedavidson committed Feb 25, 2024
1 parent 82fa6f4 commit 2bbae9f
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ updates:
directory: /
schedule:
interval: monthly
commit-message:
prefix: "ci"
- package-ecosystem: docker
directory: /
schedule:
interval: monthly
commit-message:
prefix: "ci"
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
changelog:
exclude:
labels:
- ignore-for-release
categories:
- title: Breaking Changes
labels:
- Semver-Major
- breaking-change
- title: New Features
labels:
- Semver-Minor
- enhancement
- title: Other Changes
labels:
- "*"
- title: Dependencies (dependabot)
labels:
- dependencies
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Release

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Generate release notes
run: |
gh release create ${{github.ref_name}} --generate-notes --latest --notes "[Changelog](./CHANGELOG.md), [Documentation](./docs)"
File renamed without changes.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CHANGELOG
https://keepachangelog.com/en/1.0.0/

## [v0.3.0-alpha] - 25/02/24

### Added

- Basic releases workflow to generate GitHub release when pushing a tag.
- Define release config for use with issue labelling
- Changelog

0 comments on commit 2bbae9f

Please sign in to comment.