You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-20Lines changed: 21 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,36 +19,37 @@ Opinionated GitHub Actions and reusable workflows for foundational continuous-in
19
19
20
20
### Workflow & repository automation
21
21
22
-
-[Checkout](actions/checkout/README.md)— event-aware drop-in replacement for `actions/checkout` that supports issue comment triggers.
23
-
-[Create and merge pull request](actions/create-and-merge-pull-request/README.md)— opens a pull request, rebases, and merges it with the GitHub Actions bot identity.
24
-
-[Create or update comment](actions/create-or-update-comment/README.md)— adds or updates comments on issues and pull requests idempotently.
25
-
-[Get GitHub Actions bot user](actions/get-github-actions-bot-user/README.md)— retrieves the profile information for the GitHub Actions bot.
26
-
-[Get issue number](actions/get-issue-number/README.md)— extracts the relevant issue number from the current workflow context.
22
+
-[Checkout](actions/checkout/README.md)- event-aware drop-in replacement for `actions/checkout` that supports issue comment triggers.
23
+
-[Create and merge pull request](actions/create-and-merge-pull-request/README.md)- opens a pull request, rebases, and merges it with the GitHub Actions bot identity.
24
+
-[Create or update comment](actions/create-or-update-comment/README.md)- adds or updates comments on issues and pull requests idempotently.
25
+
-[Get GitHub Actions bot user](actions/get-github-actions-bot-user/README.md)- retrieves the profile information for the GitHub Actions bot.
26
+
-[Get issue number](actions/get-issue-number/README.md)- extracts the relevant issue number from the current workflow context.
27
27
28
28
### Matrix & workflow data helpers
29
29
30
-
-[Get matrix outputs](actions/get-matrix-outputs/README.md)— aggregates outputs across matrix jobs for downstream steps.
31
-
-[Set matrix output](actions/set-matrix-output/README.md)— writes structured outputs that can be consumed by other matrix jobs.
32
-
-[Local workflow actions](actions/local-workflow-actions/README.md)— loads reusable workflow actions from the current repository.
30
+
-[Get matrix outputs](actions/get-matrix-outputs/README.md)- aggregates outputs across matrix jobs for downstream steps.
31
+
-[Set matrix output](actions/set-matrix-output/README.md)- writes structured outputs that can be consumed by other matrix jobs.
32
+
-[Local workflow actions](actions/local-workflow-actions/README.md)- loads reusable workflow actions from the current repository.
33
33
34
34
### Repository insights & utilities
35
35
36
-
-[Parse CI reports](actions/parse-ci-reports/README.md) — parses CI reports (tests, linting, coverage) into GitHub summaries and Markdown for PR comments.
37
-
-[Repository owner is organization](actions/repository-owner-is-organization/README.md) — checks whether the repository owner is an organization.
38
-
-[Slugify](actions/slugify/README.md) — converts free-form strings into GitHub-friendly slugs.
36
+
-[Parse CI reports](actions/parse-ci-reports/README.md) - parses CI reports (tests, linting, coverage) into GitHub summaries and Markdown for PR comments.
37
+
-[Repository owner is organization](actions/repository-owner-is-organization/README.md) - checks whether the repository owner is an organization.
38
+
-[Working directory](actions/resolve-working-directory/README.md) - resolves and validates a working directory path as an absolute path.
39
+
-[Slugify](actions/slugify/README.md) - converts free-form strings into GitHub-friendly slugs.
39
40
40
41
## Reusable Workflows
41
42
42
43
### Community & issue hygiene
43
44
44
-
-[Greetings](.github/workflows/greetings.md)— welcomes first-time issue reporters and pull request authors.
45
-
-[Need fix to Issue](.github/workflows/need-fix-to-issue.md)— labels issues that require follow-up fixes.
46
-
-[Stale](.github/workflows/stale.md)— automatically marks and closes stale issues and pull requests.
45
+
-[Greetings](.github/workflows/greetings.md)- welcomes first-time issue reporters and pull request authors.
46
+
-[Need fix to Issue](.github/workflows/need-fix-to-issue.md)- labels issues that require follow-up fixes.
47
+
-[Stale](.github/workflows/stale.md)- automatically marks and closes stale issues and pull requests.
47
48
48
49
### Quality gates
49
50
50
-
-[Linter](.github/workflows/linter.md)— runs Super Linter and shared formatting checks across the repository.
51
-
-[Semantic pull request](.github/workflows/semantic-pull-request.md)— enforces semantic pull request titles before merging.
51
+
-[Linter](.github/workflows/linter.md)- runs Super Linter and shared formatting checks across the repository.
52
+
-[Semantic pull request](.github/workflows/semantic-pull-request.md)- enforces semantic pull request titles before merging.
52
53
53
54
## Contributing
54
55
@@ -67,10 +68,10 @@ actions/{action-name}/
67
68
68
69
### Development standards
69
70
70
-
1.**Pinned dependencies**– reference external actions by commit SHA (for example `actions/checkout@08c6903c…`).
71
-
2.**Composite-first**– encapsulate logic in composite actions and keep scripts minimal.
72
-
3.**Early validation**– validate inputs up front using GitHub Script or shell guards and fail fast with helpful messages.
73
-
4.**Consistent branding**– set `author: hoverkraft` and `branding.color: blue` with an appropriate icon in every `action.yml`.
71
+
1.**Pinned dependencies**- reference external actions by commit SHA (for example `actions/checkout@08c6903c…`).
72
+
2.**Composite-first**- encapsulate logic in composite actions and keep scripts minimal.
73
+
3.**Early validation**- validate inputs up front using GitHub Script or shell guards and fail fast with helpful messages.
74
+
4.**Consistent branding**- set `author: hoverkraft` and `branding.color: blue` with an appropriate icon in every `action.yml`.
0 commit comments