Skip to content

Commit

Permalink
Merge pull request #93 from SJSUCSClub/92-improve-add-pr-dependency-c…
Browse files Browse the repository at this point in the history
…heck-github-action

[Improve] Added pr dependency github action
  • Loading branch information
chrehall68 authored Sep 30, 2024
2 parents 6f8e392 + 3b27a1d commit d26d01d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check Dependencies

on:
pull_request:
types: [opened, edited, closed, reopened, synchronize]

jobs:
check_dependencies:
runs-on: ubuntu-latest
name: Check Dependencies
steps:
- uses: gregsdennis/dependencies-action@main
with:
custom-domains: my-custom-domain.io another.domain.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d26d01d

Please sign in to comment.