python-telegram-bot/.github/workflows/pre-commit_dependencies_notifier.yml
2022-05-06 18:21:36 +02:00

19 lines
708 B
YAML

name: Warning maintainers
on:
pull_request_target:
paths:
- requirements.txt
- requirements-dev.txt
- .pre-commit-config.yaml
permissions:
pull-requests: write
jobs:
job:
runs-on: ubuntu-latest
name: about pre-commit and dependency change
steps:
- name: running the check
uses: Poolitzer/notifier-action@master
with:
notify-message: Hey! Looks like you edited the (dev) requirements or the pre-commit hooks. I'm just a friendly reminder to keep the pre-commit hook versions in sync with the dev requirements and the additional dependencies for the hooks in sync with the requirements :)
repo-token: ${{ secrets.GITHUB_TOKEN }}