Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INTERNAL update workflows & pr (main) #230

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Self-Checks
- [ ] I have performed a self-review of my code.
- [ ] I have updated/added necessary technical documentation in the [README](/README.md) file.

## Summary
<!-- Briefly explain the purpose of this PR in 1-2 sentences -->

## QA Checklist Labels
- [ ] Bug fix? <!-- Maps to "bug" label -->
- [ ] New feature? <!-- Maps to "feature" label -->
- [ ] Improvement? <!-- Maps to "improvement" label -->
- [ ] Technical debt? <!-- Maps to "debt" label -->
- [ ] Reusable? <!-- Maps to "reuse" label -->
- [ ] Covered by tests? <!-- Maps to "tested" label -->

## QA Checklist
<!-- Provide related ticket/PR's -->

## Additional Context
<!-- Provide a concise description of the changes made in this PR. -->

## Frontend Changes
<!-- If applicable, provide visual elements such as screenshots, GIFs, or videos to demonstrate frontend changes. -->
10 changes: 10 additions & 0 deletions .github/workflows/PULL_REQUEST_LABELS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Apply Labels Based on PR Template

on:
pull_request:
types: [opened, edited]

jobs:
label-management:
uses: Invertus/github-templates/.github/workflows/[email protected]
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/PULL_REQUEST_NAMING_RULES.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Names rules

on: [pull_request, workflow_dispatch]

jobs:
branch-name-check:
uses: Invertus/github-templates/.github/workflows/[email protected]
secrets: inherit

pr-title-check:
uses: Invertus/github-templates/.github/workflows/[email protected]
secrets: inherit
Loading