Skip to content

Commit

Permalink
Change CircleCI config to be a noop job
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-souers committed Jan 8, 2025
1 parent dd02a2a commit cde6aa0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
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

0 comments on commit cde6aa0

Please sign in to comment.