https://github.com/replicatedhq/required-workflows
Common workflows required for some or all replicatedhq repos
https://github.com/replicatedhq/required-workflows
Last synced: 3 months ago
JSON representation
Common workflows required for some or all replicatedhq repos
- Host: GitHub
- URL: https://github.com/replicatedhq/required-workflows
- Owner: replicatedhq
- Created: 2023-02-08T14:52:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-19T21:57:54.000Z (3 months ago)
- Last Synced: 2025-03-19T22:39:22.201Z (3 months ago)
- Size: 491 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# required-workflows
Common workflows required for some or all replicatedhq repos## Workflows
* **pr-labels.yml**: Fails if a PR does not have the necessary labels for Engineering metrics, will apply primary labels if the PR title contains a semantic type, for example:
* `feat(ci)`, `feature(ci)`: Adds `type::feature`
* `bug(ci)`: Adds `type::bug`
* `chore(ci)`: Adds `type::chore`## Actions
Any custom actions related to these workflows reside in `.github/actions`.JavaScript actions must have their `dist` folders rebuilt if changed. Run `npm run all` in the action folder before committing and pushing.
* **pr-labels**: Implements the PR label check logic as outlined in the wiki.