1name: bot 2 3on: 4 pull_request: 5 branches: 6 - '**' 7 8jobs: 9 require_changelog: 10 11 runs-on: ubuntu-latest 12 steps: 13 - uses: actions/checkout@v2 14 - uses: mskelton/changelog-reminder-action@v1 15 with: 16 # Match any file in the docs/change_log/ dir. 17 changelogRegex: "docs/change_log/.*" 18 # Only require changelog update if changes were made in markdown/ 19 include: "markdown/.*" 20 message: | 21 @${{ github.actor }}, thank you for your contribution. It appears that you have not added a comment to the 22 change log describing the changes you have made. Doing so will help to ensure your contribution is accepted. 23 24 Please see the [Contributing Guide](https://python-markdown.github.io/contributing/#pull-requests) for details. 25 26 markdown-link-check: 27 runs-on: ubuntu-latest 28 steps: 29 - uses: actions/checkout@v2 30 - uses: gaurav-nelson/github-action-markdown-link-check@v1 31 with: 32 use-quiet-mode: yes 33 use-verbose-mode: yes 34 check-modified-files-only: yes 35 base-branch: master 36