Merge remote-tracking branch 'ci/main' into develop
This commit is contained in:
commit
248ed353b8
2 changed files with 27 additions and 2 deletions
23
.github/workflows/notify-release.yml
vendored
Normal file
23
.github/workflows/notify-release.yml
vendored
Normal 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'
|
|
@ -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"]
|
||||
|
|
Reference in a new issue