Skip to content

Commit

Permalink
Add config and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HAASLEWER committed May 14, 2024
1 parent 5568d78 commit b677c39
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
target-branch: "develop"
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Dependabot issue for PRs
on:
pull_request:
types: [opened, reopened]

permissions:
contents: write
issues: write
repository-projects: write
pull-requests: write

jobs:
issue:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Manage Dependabot Issues
uses: Siyavula/github_actions/actions/dependabot_issue_manager@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b677c39

Please # to comment.