Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change release workflow #103

Merged
merged 1 commit into from
Jun 14, 2022
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
26 changes: 26 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
changelog:
exclude:
labels:
- changelog:skip
categories:
- title: Added
labels:
- changelog:added
- title: Changed
labels:
- changelog:changed
- title: Deprecated
labels:
- changelog:deprecated
- title: Removed
labels:
- changelog:removed
- title: Fixed
labels:
- changelog:fixed
- title: Security
labels:
- changelog:security
- title: Other Unsorted Updates
labels:
- "*"
17 changes: 17 additions & 0 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release
on:
push:
branches:
- 'main'
jobs:
release-on-push:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@v0.25.0
with:
bump_version_scheme: norelease
tag_prefix: v
use_github_release_notes: true
max_commits: 128
28 changes: 0 additions & 28 deletions .github/workflows/tag.yaml

This file was deleted.