We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd02a2a commit cde6aa0Copy full SHA for cde6aa0
.circleci/config.yml
@@ -0,0 +1,28 @@
1
+---
2
+# CI has been migrated to GitHub Actions
3
+# Keeping this file so that previous pull requests continue working
4
+# This file does not generate any CircleCI workflow
5
+
6
+version: 2.1
7
+executors:
8
+ golang:
9
+ docker:
10
+ - image: busybox
11
+jobs:
12
+ noopjob:
13
+ executor: golang
14
+ steps:
15
+ - run:
16
+ command: "true"
17
+workflows:
18
+ version: 2
19
+ prometheus:
20
+ jobs:
21
+ - noopjob
22
+ triggers:
23
+ - schedule:
24
+ cron: "0 0 30 2 *"
25
+ filters:
26
+ branches:
27
+ only:
28
+ - master
0 commit comments