Skip to content

Commit

Permalink
Merge pull request #35 from knmlprz/dependabot-pr
Browse files Browse the repository at this point in the history
  • Loading branch information
finloop authored Nov 23, 2023
2 parents 0ca4085 + f875bb3 commit dc95f9e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/chatlib.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: Python application
name: Lint, test and format chatblib

on:
workflow_dispatch:
pull_request:
paths:
- "chatlib/**"
workflow_run:
workflows: ["Dependabot PR Check"]
types:
- completed

permissions:
contents: read
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/dependabot_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
### .github/workflows/dependabot_pr.yml
### This workflow doesn't have access to secrets and has a read-only token
name: Dependabot PR Check
on:
pull_request

jobs:
check-dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- run: echo "PR created by Dependabot"

0 comments on commit dc95f9e

Please sign in to comment.