Skip to content
Snippets Groups Projects
Commit dc9c2117 authored by Sergey Bronnikov's avatar Sergey Bronnikov Committed by Kirill Yukhin
Browse files

ci: run fuzzing on PR when the 'full-ci' label is set

Patch allows to run fuzzing in PR where label 'full-ci' is set.
Complememts a patch in commit "ci: enable fuzzing for *-full-ci
branches" (0115aab0).

Follows up #6630
parent 91ea0324
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,15 @@ on:
- 'src/**'
- 'test/fuzz/**'
- 'test/static/corpus/**'
pull_request:
types: [opened, reopened, synchronize, labeled]
jobs:
fuzzing:
# Run on pull request only if the 'full-ci' label is set.
if: github.event_name != 'pull_request' ||
contains(github.event.pull_request.labels.*.name, 'full-ci')
runs-on: ubuntu-18.04
strategy:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment