GPT Changelog #119
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: "GPT Changelog" | |
| # Triggered after Version Bump completes successfully | |
| # Generates per-plugin CHANGELOG.md files using GPT-4o | |
| on: | |
| workflow_run: | |
| workflows: ["Version Bump"] | |
| types: | |
| - completed | |
| branches: | |
| - main | |
| jobs: | |
| changelog: | |
| if: github.event.workflow_run.conclusion == 'success' | |
| uses: LerianStudio/github-actions-shared-workflows/.github/workflows/gptchangelog.yml@gptchangelog-ring-pattern | |
| with: | |
| runner_type: "blacksmith-4vcpu-ubuntu-2404" | |
| filter_paths: | | |
| default | |
| dev-team | |
| pm-team | |
| pmo-team | |
| finops-team | |
| tw-team | |
| path_level: '1' | |
| tag_separator: '@' | |
| app_name_prefix: 'ring-' | |
| stable_releases_only: false | |
| secrets: inherit |