An open API service indexing awesome lists of open source software.

https://github.com/actalog/check-ci

✅ Checks CI before CD
https://github.com/actalog/check-ci

actions ci github

Last synced: 3 months ago
JSON representation

✅ Checks CI before CD

Awesome Lists containing this project

README

        

# @actalog/check-ci

[![CD](https://github.com/actalog/check-ci/actions/workflows/cd.yml/badge.svg)](https://github.com/actalog/check-ci/actions/workflows/cd.yml)

Checks CI before CD

## Usage

```yml
name: CD

on:
workflow_run:
workflows: ['CI']
types:
- completed
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actalog/check-ci@v1
- uses: actions/checkout@v4
- run: echo "Your CD"
```