/ distodon / .github / workflows / notify-release.yml
notify-release.yml
 1  name: notify-release
 2  
 3  on:
 4    workflow_dispatch:
 5    release:
 6      types: [published]
 7    issues:
 8      types: [closed]
 9    schedule:
10      - cron: '0 4 * * *'
11  
12  permissions:
13    contents: read
14    issues: write
15  
16  jobs:
17    notify-release:
18      runs-on: ubuntu-latest
19      steps:
20        - name: Notify release
21          uses: nearform-actions/github-action-notify-release@v1
22          with:
23            notify-after: '14d'