Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Add dependabot.yml GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
RLAlpha49 committed May 16, 2024
1 parent fe077de commit 7198e01
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"}'

0 comments on commit 7198e01

Please sign in to comment.