diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000..71f1fd2 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,16 @@ +name: Check for dependency updates +on: + push: + paths: + - 'pyproject.toml' + - 'poetry.lock' + +jobs: + dependabot: + runs-on: ubuntu-latest + steps: + - name: Check for updates + run: | + curl -X POST -H "Content-Type: application/json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + https://api.github.com/repos/${{ github.repository }}/dispatches \ + -d '{"event_type": "dependabot"}' \ No newline at end of file