Skip to content

Commit

Permalink
Fix dependency-review failing workflow after merged PR (#137)
Browse files Browse the repository at this point in the history
* ci: Use fixed docker-hub version string for `forkdiff`

* ci: Run dependency-review job on PR only
  • Loading branch information
ezdac authored and carterqw2 committed Jun 11, 2024
1 parent 7bac150 commit 7c04deb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ jobs:
with:
fetch-depth: 0 # make sure to fetch the old commit we diff against

- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
warn-only: true

- name: Build forkdiff
uses: "docker://protolambda/forkdiff:0.1.0"
with:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PR only

on:
pull_request:
branches:
- master
- celo*

jobs:
dependencies:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: "Dependency Review"
uses: actions/dependency-review-action@v4
with:
warn-only: true

0 comments on commit 7c04deb

Please sign in to comment.