summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Security/DAST.gitlab-ci.yml
blob: 770340de16fe6b1033c0c9fec847bab034d18065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Read more about this feature here: https://docs.gitlab.com/ee/user/project/merge_requests/dast.html

# Configure the scanning tool through the environment variables.
# List of the variables: https://gitlab.com/gitlab-org/security-products/dast#settings
# How to set: https://docs.gitlab.com/ee/ci/yaml/#variables

include:
  - template: Jobs/DAST.gitlab-ci.yml

variables:
  DAST_WEBSITE: http://example.com # Please edit to be your website to scan for vulnerabilities

stages:
  - build
  - test
  - deploy
  - dast

dast:
  only:
    refs:
      - branches
  except:
    refs: [] # Override default from template
    variables:
      - $DAST_DISABLED