https://github.com/okineadev/wxt-workflows
⚙️ Shared workflow for multiple projects of this organization
https://github.com/okineadev/wxt-workflows
github-actions shared-workflows
Last synced: about 1 year ago
JSON representation
⚙️ Shared workflow for multiple projects of this organization
- Host: GitHub
- URL: https://github.com/okineadev/wxt-workflows
- Owner: okineadev
- Created: 2025-01-28T14:50:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-28T14:58:02.000Z (over 1 year ago)
- Last Synced: 2025-03-29T01:11:47.307Z (about 1 year ago)
- Topics: github-actions, shared-workflows
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ♻️ Reusable GitHub Workflows
A comprehensive collection of reusable GitHub Actions workflows that help standardize CI/CD practices across our organization.
## Overview
This repository contains a set of carefully crafted, reusable GitHub workflows that can be easily integrated into any our project. These workflows help maintain consistency, reduce duplication, and enforce best practices across all repositories.
## Available Workflows
### PR Title Check ([`pr-title.yml`](.github/workflows/pr-title.yml))
Validates Pull Request titles against conventional commit format.
```yaml
uses: wxt-dev/workflows/.github/workflows/pr-title.yml@main
with:
sparse-checkout: commitlint.config.js
commitlint-help-url: https://www.conventionalcommits.org/en/v1.0.0/
```
### PR Closed ([`pr-closed.yml`](.github/workflows/pr-closed.yml))
Adds a thank you comment when PRs are closed.
```yaml
uses: wxt-dev/workflows/.github/workflows/pr-closed.yml@main
with:
comment: Thank you for your contribution! 🙏
```