Refresh Release Notes from Nucleus #74752
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Refresh Release Notes from Nucleus" | |
on: | |
schedule: | |
- cron: "*/10 * * * *" # Every 10th minute | |
workflow_dispatch: | |
concurrency: | |
group: run-releasenotes-update | |
cancel-in-progress: true | |
env: | |
SNITCH_URL: ${{ secrets.SNITCH_URL }} | |
jobs: | |
note_processing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-git-identity | |
shell: bash | |
run: | | |
git config user.email ${{ secrets.GIT_AUTHOR_EMAIL }} | |
git config user.name ${{ secrets.GIT_AUTHOR_NAME }} | |
- id: trigger-processing | |
shell: bash | |
run: ./update_docker.sh commit |