Discord Changelog #129
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
| # SPDX-FileCopyrightText: 2024 DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> | |
| # SPDX-FileCopyrightText: 2024 Evgencheg <73418250+Evgencheg@users.noreply.github.com> | |
| # SPDX-FileCopyrightText: 2024 FoxxoTrystan <45297731+FoxxoTrystan@users.noreply.github.com> | |
| # SPDX-FileCopyrightText: 2025 portfiend <109661617+portfiend@users.noreply.github.com> | |
| # SPDX-FileCopyrightText: 2025 sleepyyapril <123355664+sleepyyapril@users.noreply.github.com> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later AND MIT | |
| name: Discord Changelog | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * *' | |
| jobs: | |
| publish_changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: master | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: pip install requests pyyaml | |
| - name: Publish changelog | |
| run: python Tools/actions_changelogs_since_last_run.py | |
| env: | |
| CHANGELOG_DIR: ${{ vars.CHANGELOG_DIR }} | |
| CHANGELOG_WEBHOOK: ${{ secrets.CHANGELOG_WEBHOOK }} | |
| GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| continue-on-error: true |