Skip to content

Commit

Permalink
Check credits via github actions (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShortDevelopment authored Feb 10, 2023
1 parent 7ecd5e7 commit 1d71bc9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/credits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Credits"
on:
pull_request

jobs:
CheckCredits:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check CREDITS.md
run: cat CREDITS.md | grep -w $USER
env:
USER: ${{ github.actor }}

0 comments on commit 1d71bc9

Please sign in to comment.