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

https://github.com/sclorg/ci-actions


https://github.com/sclorg/ci-actions

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# GitHub workflows for SCLOrg

This repo contains GitHub workflows for re-use in this organisation.

Eg. to check the README version table and run container tests,
use a similar workflow:

```yaml
on:
issue_comment:
types:
- created
jobs:
check-readme:
uses: "sclorg/ci-actions/.github/workflows/check-readme.yml@main"
container-tests:
needs: check-readme
uses: "sclorg/ci-actions/.github/workflows/container-tests.yml@main"
with:
enabled-tests: '["container","container-pytest","openshift-4","openshift-pytest"]'
versions: '[]'
openshift-versions: '[]'
secrets: inherit
```