fix: adjust so human changes can work #4
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
### .github/workflows/dependabot_pr.yml | |
### This workflow doesn't have access to secrets and has a read-only token | |
name: Dependabot PR Check (check if human made this) | |
on: | |
push: | |
paths: | |
- poetry.lock | |
- pyproject.toml | |
workflow_dispatch: | |
jobs: | |
check-dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- run: echo "PR created by Dependabot" | |