Feature/cont 4319 update core data set and bootstrap job for contact type model update #1031
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: 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" |