This repository was archived by the owner on Jul 1, 2026. It is now read-only.
Release v3.1.13: Dimension Core epic import and submodule fixes. #16
This file contains hidden or 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: Discord changelog | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - CHANGELOG.md | |
| workflow_dispatch: | |
| inputs: | |
| force: | |
| description: Post latest changelog even if version did not change | |
| type: boolean | |
| default: true | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 2 | |
| - name: Post release notes to Discord | |
| env: | |
| DISCORD_CHANGELOG_WEBHOOK_URL: ${{ secrets.DISCORD_CHANGELOG_WEBHOOK_URL }} | |
| DISCORD_CHANGELOG_FORCE: ${{ github.event_name == 'workflow_dispatch' && inputs.force && '1' || '' }} | |
| run: | | |
| export PREVIOUS_CHANGELOG="$(git show HEAD~1:CHANGELOG.md 2>/dev/null || true)" | |
| node scripts/post-changelog-to-discord.mjs |