github-actions-templates

Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications.

By sickn33 · 451 installs

npx skills add sickn33/agentic-awesome-skills --skill github-actions-templates

Source repository · Upstream listing

GitHub Actions Workflow Patterns When to Use Implement testing, matrix builds, artifact preparation or an explicitly authorized deployment workflow for an existing repository. Inputs Inspect the repository's actual scripts, lockfile, supported runtimes, required check names and release policy. Read resources/implementation playbook.md and references/common workflows.md before choosing job boundaries. Test Workflow This Node example assumes the target repository declares npm test and supports Node 22. Adapt the runtime and command to the actual project. The pinned action revisions are explicit review inputs; verify them before adopting or updating the template. Matrix Builds Add a matrix only for versions and operating systems the project supports. Keep dependencies reproducible, identify failing combinations, and avoid hiding failures with blanket continue on error. Test required check behavior when jobs are conditionally skipped. Build and Publication Build an artifact from the tested commit and record its identity. Publication needs a separate trusted job with the minimum registry permission. Do not publish artifacts produced by arbitrary untrusted code in a privileged context; bind accepted artifacts to their exact source and producing workflow. Deployment Use the project's protected release path. Identify the immutable artifact, destination, workload identity, rollout and rollback checks before adding deployment commands. A named GitHub environment does not configure reviewers automatically. Verify its actual protections. Do not label a placeholder echo command as a successful deployment. Verification Exercise one passing change and one deliberate test failure on a topic branch. Confirm the failing check prevents downstream publication. Inspect tokens, runner isolation, caches and artifact boundaries. Keep production credentials absent from untrusted validation jobs. Example A project needs Linux and Windows tests. Select its supported runtime, add the two runner combinations and confirm that either failure blocks the required result. Prepare publication separately; do not add registry credentials to the matrix. Limitations This skill supplies patterns, not an installed deployment program. Repository policy, runner trust and environment settings must be inspected. Review every third party action at its full commit SHA and treat logs and uploaded artifacts as possible data exposure paths. Sources [GitHub secure workflow guidance](https://docs.github.com/en/actions/reference/security/secure use)