Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# Check CI

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: gabrielrufino/check-ci@main
- uses: actions/checkout@v4
- run: echo "Your CD"
```