Update check_changelog workflow #144
Workflow file for this run
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
name: Check changelog | |
on: | |
push: | |
branches-ignore: | |
- main | |
- push-action/** # Temporary branches created by CasperWA/push-protected@v2 action on release workflow | |
pull_request: | |
types: [ opened, reopened ] | |
workflow_call: | |
outputs: | |
release_type: | |
description: The release type extracted from changelog | |
value: ${{ jobs.check_changelog.outputs.release_type }} | |
jobs: | |
check_changelog: | |
uses: OpenTermsArchive/engine/.github/workflows/changelog.yml@v2.2.1 |