-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change CircleCI config to be a noop job
- Loading branch information
1 parent
dd02a2a
commit cde6aa0
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# CI has been migrated to GitHub Actions | ||
# Keeping this file 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: | ||
- master |