Merge pull request #12219 from ronso0/skins-reload-default.qss #62
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: Changelog | |
on: | |
push: | |
branches: | |
- "main" | |
- "[0-9].[0-9]" | |
paths: | |
- "CHANGELOG.md" | |
permissions: {} | |
jobs: | |
trigger-changelog-update: | |
name: Trigger Changelog update on manual repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get current branch name | |
uses: nelonoel/[email protected] | |
- name: Start workflow run on manual repository | |
uses: peter-evans/repository-dispatch@v2 | |
if: env.MIXXXBOT_TOKEN != null | |
with: | |
token: ${{ env.MIXXXBOT_TOKEN }} | |
repository: mixxxdj/manual | |
event-type: update-changelog | |
client-payload: '{"branch": "${{ env.BRANCH_NAME }}", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | |
env: | |
MIXXXBOT_TOKEN: ${{ secrets.MIXXXBOT_CHANGELOG_AUTOUPDATER_PAT }} |