https://github.com/sclorg/ci-actions
https://github.com/sclorg/ci-actions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sclorg/ci-actions
- Owner: sclorg
- Created: 2025-11-12T08:57:16.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2026-03-16T08:21:42.000Z (3 months ago)
- Last Synced: 2026-03-16T20:49:46.376Z (3 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```