diff --git a/.github/workflows/publish-changelog.yml b/.github/workflows/publish-changelog.yml new file mode 100644 index 00000000000..6e3f7215301 --- /dev/null +++ b/.github/workflows/publish-changelog.yml @@ -0,0 +1,25 @@ +name: Publish Changelog + +on: + workflow_dispatch: + schedule: + - cron: '0 10 * * *' + +jobs: + publish_changelog: + runs-on: ubuntu-latest + steps: + + - name: checkout + uses: actions/checkout@v3 + with: + token: ${{secrets.GITHUB_TOKEN}} + ref: master + + - name: Publish changelog + run: Tools/actions_changelogs_since_last_run.py + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CHANGELOG_DIR: ${{ vars.CHANGELOG_DIR }} + DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }} + continue-on-error: true diff --git a/Resources/Changelog/Floof.yml b/Resources/Changelog/Floof.yml index b7424c8c0a8..28004221717 100644 --- a/Resources/Changelog/Floof.yml +++ b/Resources/Changelog/Floof.yml @@ -4,4 +4,5 @@ Entries: - author: FoxxoTrystan changes: - {message: 'Created the Floof Station changelog.', type: Add} + id: 1 time: '2024-7-12T00:00:00.0000000+00:00' diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index e24e74c51f5..862f9408d8a 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -21,7 +21,7 @@ DISCORD_SPLIT_LIMIT = 2000 DISCORD_WEBHOOK_URL = os.environ.get("DISCORD_WEBHOOK_URL") -CHANGELOG_FILE = "Resources/Changelog/DeltaVChangelog.yml" +CHANGELOG_FILE = os.environ.get("CHANGELOG_DIR") TYPES_TO_EMOJI = { "Fix": "🐛", @@ -165,7 +165,7 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: # Flush the group to the message message_content.write(group_text) - + # Clean up anything remaining message_text = message_content.getvalue() if len(message_text) > 0: