Note
For reusable workflows, see devantler-tech/reusable-workflows.
Composite actions for CI/CD pipelines across DevantlerTech projects.
---
title: GitHub Actions Relationship Diagram
---
flowchart TD
A[Workflows] --> B[Jobs]
B --> C([Reusable Workflows])
B --> D[Steps]
C --> D
C --> B
D --> E[***Actions***]
E -.- F([***Composite Actions***])
F --> D
E -.- G([***JavaScript Actions***])
E -.- H([***Docker Container Actions***])
| Action | Description |
|---|---|
| approve-pr | Approve a PR using a GitHub App identity |
| cleanup-ghcr-packages | Clean up old GHCR packages |
| create-issues-from-todos | Create GitHub issues from TODO comments |
| enable-auto-merge-on-pr | Enable auto-merge on a pull request |
| login-to-ghcr | Login to GitHub Container Registry |
| run-dotnet-tests | Test .NET solution or project with coverage |
| setup-go-toolchain | Setup Go with optional private module support |
| setup-ksail-cli | Install KSail CLI via Homebrew |
| sync-github-labels | Sync GitHub labels from a configuration file |
| upsert-issue | Create, update, reopen, or close a GitHub issue by title |
See CONTRIBUTING.md for conventions and guidelines.