mirror of
https://github.com/prometheus/prometheus.git
synced 2026-04-23 14:41:51 +02:00
18 lines
521 B
YAML
18 lines
521 B
YAML
name: CIFuzz
|
|
on:
|
|
workflow_call:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
Fuzzing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip fuzzing on LTS branch
|
|
# Fuzzing CI is disabled on this LTS branch because the oss-fuzz
|
|
# integration was updated on main to use Go native fuzzing, which is
|
|
# incompatible with this branch. Since oss-fuzz has no versioned
|
|
# releases, there is no older stable version to pin to. Fuzzing
|
|
# continues to run on the main branch.
|
|
run: true
|