Merge remote-tracking branch 'ci/main' into develop

This commit is contained in:
Felix Bargfeldt 2023-05-02 14:35:50 +02:00
commit 248ed353b8
Signed by: Defelo
GPG key ID: 2A05272471204DD3
2 changed files with 27 additions and 2 deletions

23
.github/workflows/notify-release.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: notify-release
on:
workflow_dispatch:
release:
types: [published]
issues:
types: [closed]
schedule:
- cron: '0 4 * * *'
permissions:
contents: read
issues: write
jobs:
notify-release:
runs-on: ubuntu-latest
steps:
- name: Notify release
uses: nearform-actions/github-action-notify-release@v1
with:
notify-after: '7d'

View file

@ -1,10 +1,12 @@
shared-version = true
sign-commit = true
pre-release-commit-message = "{{version}}"
pre-release-commit-message = "v{{version}}"
sign-tag = true
tag-prefix = ""
tag-message = "{{version}}"
tag-message = "v{{version}}"
publish = true
allow-branch = ["develop"]