Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
# for security vulnerabilities or other risks.
#
# Trigger:
# Runs automatically whenever a pull request is opened, updated,
# in the ecommerce platform org.
# Whenever a PR is opened, synchronized, or reopened
#
# Notes:
# Uses GitHub's official Dependency Review action to highlight potential
Expand All @@ -15,7 +14,8 @@
name: Dependency Review

on:
workflow_call: {}
pull_request:
types: [opened, reopened, synchronize]

jobs:
dependency-review:
Expand All @@ -34,4 +34,6 @@ jobs:
# Runs github's dependency check
# ---------------------------
- name: Dependency check
uses: actions/dependency-review-action@v4
uses: actions/dependency-review-action@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Lint YAML files
uses: ibiqlik/action-yamllint@v3
with:
config-file: .yamllint.yml
config_file: .yamllint.yml

lint-markdown:
name: Markdown Lint
Expand Down
Loading