mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-01 06:48:50 +00:00
f56f9cb1c0
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
31 lines
593 B
YAML
31 lines
593 B
YAML
when:
|
|
- event: [pull_request, cron]
|
|
- event: push
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
- renovate/*
|
|
|
|
variables:
|
|
- &trivy_image aquasec/trivy:0.46.1
|
|
- &trivy_plugin woodpeckerci/plugin-trivy:1.0.1
|
|
|
|
steps:
|
|
backend:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: web/,docs/
|
|
|
|
docs:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: node_modules/,plugins/woodpecker-plugins/node_modules/
|
|
dir: docs/
|
|
|
|
web:
|
|
depends_on: []
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: node_modules/
|
|
dir: web/
|