Skip to content

Partially ports updates to the in-game HUD interface #613

Partially ports updates to the in-game HUD interface

Partially ports updates to the in-game HUD interface #613

Workflow file for this run

# Creates an entry in html/changelogs automatically, to eventually be compiled by compile_changelogs
name: Auto Changelog
on:
pull_request_target:
types:
- closed
branches:
- master
permissions:
contents: write
jobs:
auto_changelog:
runs-on: ubuntu-24.04
if: github.event.pull_request.merged == true
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Run auto changelog
uses: actions/github-script@v7
with:
script: |
const { processAutoChangelog } = await import('${{ github.workspace }}/tools/pull_request_hooks/autoChangelog.js')
await processAutoChangelog({ github, context })
github-token: ${{ secrets.COMFY_ORANGE_PAT || secrets.GITHUB_TOKEN }}