mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-12 10:08:26 +00:00
"Inspired" by my mistake in https://github.com/MichMich/MagicMirror/pull/3028 this PR will add a worfklow check for the branch a PR is based against. Open question is if this prevents @MichMich from preparing a release? --------- Co-authored-by: veeck <michael@veeck.de>
19 lines
528 B
YAML
19 lines
528 B
YAML
# This workflow scans your pull requests for dependency changes, and will raise an error if any vulnerabilities or invalid licenses are being introduced.
|
|
# For more information see: https://github.com/actions/dependency-review-action
|
|
|
|
name: "Review Dependencies"
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
dependency-review:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout code"
|
|
uses: actions/checkout@v3
|
|
- name: "Dependency Review"
|
|
uses: actions/dependency-review-action@v3
|