Skip to content

Commit

Permalink
Update the CI to use the common workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtw committed Jun 19, 2022
1 parent d07468c commit 156162e
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 207 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC
# SPDX-License-Identifier: Apache-2.0
---
name: CI

on:
push:
branches:
- main
paths-ignore:
- README.md
- CONTRIBUTING.md
- MAINTAINERS.md
- LICENSE
- NOTICE
pull_request:
workflow_dispatch:

jobs:
ci:
uses: xmidt-org/.github/.github/workflows/go-ci.yml@go-ci-v1
secrets: inherit
107 changes: 0 additions & 107 deletions .github/workflows/push.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/release.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/tag.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/updater.yml
@@ -0,0 +1,15 @@
# SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC
# SPDX-License-Identifier: Apache-2.0
---
name: Dependency Updater

on:
schedule:
# Run every week 9:05 AM UTC (Monday at 1:00 AM PT)
- cron: '05 9 * * 1'
workflow_dispatch:

jobs:
ci:
uses: xmidt-org/.github/.github/workflows/go-updater.yml@go-updater-v1
secrets: inherit
34 changes: 0 additions & 34 deletions .sonar-project.properties

This file was deleted.

9 changes: 5 additions & 4 deletions README.md
Expand Up @@ -2,13 +2,14 @@

Codex-db provides the database packages needed for the codex project.

[![Build Status](https://github.com/xmidt-org/codex-db/workflows/CI/badge.svg)](https://github.com/xmidt-org/codex-db/actions)
[![Build Status](https://github.com/xmidt-org/codex-db/actions/workflows/ci.yml/badge.svg)](https://github.com/xmidt-org/codex-db/actions/workflows/ci.yml)
[![Dependency Updateer](https://github.com/xmidt-org/codex-db/actions/workflows/updater.yml/badge.svg)](https://github.com/xmidt-org/codex-db/actions/workflows/updater.yml)
[![codecov.io](http://codecov.io/github/xmidt-org/codex-db/coverage.svg?branch=main)](http://codecov.io/github/xmidt-org/codex-db?branch=main)
[![Go Report Card](https://goreportcard.com/badge/github.com/xmidt-org/codex-db)](https://goreportcard.com/report/github.com/xmidt-org/codex-db)
[![Apache V2 License](http://img.shields.io/badge/license-Apache%20V2-blue.svg)](https://github.com/xmidt-org/codex-db/blob/main/LICENSE)
[![GitHub release](https://img.shields.io/github/release/xmidt-org/codex-db.svg)](CHANGELOG.md)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/xmidt-org/codex-db)](https://pkg.go.dev/github.com/xmidt-org/codex-db)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=xmidt-org_codex-db&metric=alert_status)](https://sonarcloud.io/dashboard?id=xmidt-org_codex-db)
[![Apache V2 License](http://img.shields.io/badge/license-Apache%20V2-blue.svg)](https://github.com/xmidt-org/codex-db/blob/main/LICENSE)
[![GitHub Release](https://img.shields.io/github/release/xmidt-org/codex-db.svg)](CHANGELOG.md)
[![GoDoc](https://pkg.go.dev/badge/github.com/xmidt-org/codex-db)](https://pkg.go.dev/github.com/xmidt-org/codex-db)

## Summary

Expand Down

0 comments on commit 156162e

Please sign in to comment.