mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
34 lines
710 B
YAML
34 lines
710 B
YAML
when:
|
|
- event: [ pull_request, cron ]
|
|
- event: push
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
- release/*
|
|
|
|
variables:
|
|
- &trivy_image aquasec/trivy:latest
|
|
- &trivy_plugin codeberg.org/woodpecker-plugins/trivy:1.0.1
|
|
|
|
steps:
|
|
check backend:
|
|
group: check
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: web/,docs/
|
|
|
|
check docs:
|
|
group: check
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: node_modules/,plugins/woodpecker-plugins/node_modules/
|
|
dir: docs/
|
|
when:
|
|
event: [pull_request, push, cron]
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
check web:
|
|
group: check
|
|
image: *trivy_plugin
|
|
settings:
|
|
skip-dirs: node_modules/
|
|
dir: web/
|