Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

actions ci github

Last synced: about 2 months ago
JSON representation

Checks CI before CD

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