From 91fd7d09ceb0fbd103472bf5d214b4c0a86b731b Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 9 Aug 2024 18:44:03 +0930 Subject: [PATCH] feat: pr dependency check --- .github/workflows/pull-requests.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/pull-requests.yaml b/.github/workflows/pull-requests.yaml index cb0bedd..cd124f5 100644 --- a/.github/workflows/pull-requests.yaml +++ b/.github/workflows/pull-requests.yaml @@ -35,3 +35,13 @@ jobs: skip_revert: true types: "build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test" + + pr_dependencies: + runs-on: ubuntu-latest + name: Dependency Check + steps: + - uses: gregsdennis/dependencies-action@4fc2a4879387b43f784920699cb9303dd0524ac4 + with: + custom-domains: my-custom-domain.io another.domain.com + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}