mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
8f3bcfac93
Signed-off-by: Julien Pivotto <roidelapluie@o11y.eu> Signed-off-by: Julien Pivotto <roidelapluie@o11y.eu>
34 lines
567 B
YAML
34 lines
567 B
YAML
---
|
|
# Prometheus has switched to GitHub action.
|
|
# Circle CI is not disabled repository-wise so that previous pull requests
|
|
# continue working.
|
|
# This file does not generate any CircleCI workflow.
|
|
|
|
version: 2.1
|
|
|
|
executors:
|
|
golang:
|
|
docker:
|
|
- image: busybox
|
|
|
|
jobs:
|
|
noopjob:
|
|
executor: golang
|
|
|
|
steps:
|
|
- run:
|
|
command: "true"
|
|
|
|
workflows:
|
|
version: 2
|
|
prometheus:
|
|
jobs:
|
|
- noopjob
|
|
triggers:
|
|
- schedule:
|
|
cron: "0 0 30 2 *"
|
|
filters:
|
|
branches:
|
|
only:
|
|
- main
|