Skip to content

Changelog Changed Workflow

This workflow runs on pull request creation/update events. It checks to ensure that the changelog was updated before allowing the PR to merge.

Flowchart

flowchart TD
trigger[Pull Request Trigger]
checkout[Checkout]
check{"Changes in Changelog?"}
pass[Success!]
fail[Failure!]

class trigger internal-link;

trigger --> checkout --> check
check-->|Yes|pass
check-->|No|fail

Code