#4 17 - Set up workflows for automatic repository release #2
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 PR Release Notes in Description | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited, labeled, unlabeled] | |
branches: [ master ] | |
jobs: | |
check-release-notes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.11' | |
- name: Check presence of release notes in PR description | |
uses: AbsaOSS/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
github-repository: ${{ github.repository }} | |
pr-number: ${{ github.event.number }} |