From 584b5ef7e33c42955606dfabeb778c4d539264aa Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 14 Jan 2026 19:41:05 +0100 Subject: [PATCH] Updated the publish Pipeline: It now tries to publish every first day of a new month --- .github/workflows/publish.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7178c7f..6e2de1d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,15 +1,15 @@ name: Publish Problem-List on: - pull_request: - types: [closed] + schedule: + - cron: "0 0 1 * *" + workflow_dispatch: permissions: contents: write jobs: release: - if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: @@ -51,7 +51,6 @@ jobs: echo "do_release=true" >> "$GITHUB_OUTPUT" fi - - name: Build release notes from README section if: steps.decide.outputs.do_release == 'true' run: | @@ -82,4 +81,4 @@ jobs: gh release create "$TAG" \ --title "$TAG" \ - --notes-file release-notes.md \ No newline at end of file + --notes-file release-notes.md