Skip to content

Commit cde6aa0

Browse files
committed
Change CircleCI config to be a noop job
1 parent dd02a2a commit cde6aa0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.circleci/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)