DAS-1399 - add purpose field to service agreement #571
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: Pull Request Body Validation | |
# | |
# IMPORTANT TO KNOW | |
# | |
# - This workflow runs whenever new changes is Opened, reopened, edited or changes pushed to an existing Pull Request | |
# - It validates if description in the pull request is updated by PR owner | |
# | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
pull-request-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR description | |
uses: JJ/github-pr-contains-action@releases/v10 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
bodyDoesNotContain: "A few sentences describing the overall goals of the pull request's commits" |