Skip to content

Commit f93feb9

Browse files
authored
Merge pull request #32 from RafaelJohn9/update/template-first-line-convention
feat: added test and workflow that verifies templates
2 parents dcf5059 + ff7f599 commit f93feb9

12 files changed

Lines changed: 119 additions & 2 deletions

File tree

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Bug Report Template
32
name: 🐛 Bug Report
43
description: Report unexpected behavior, failures, or issues in the project.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Verify Templates
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
verify-templates:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up Rust
12+
uses: actions-rs/toolchain@v1
13+
with:
14+
toolchain: stable
15+
override: true
16+
- name: Run verify-templates test
17+
run: cargo test --test verify_templates

templates/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- outlines the expected standards of behavior for individuals within an organization or group. -->
12
# Code of Conduct
23

34
## Our Commitment

templates/issue-templates/bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Bug Report Template
32
name: 🐛 Bug Report
43
description: Report unexpected behavior, failures, or issues in the project.

templates/pr-templates/bug.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
<!-- Submit a fix for a known bug -->
12
---
3+
24
name: 🐞 Bug Fix
35
about: Submit a fix for a known bug
46
title: "[BUGFIX] <short summary>"

templates/pr-templates/community.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
<!-- Propose or enhance collaboration with the community -->
2+
13
---
4+
25
name: 🤝 Community Collaboration
36
about: Propose or enhance collaboration with the community
47
title: "[COMMUNITY] <short summary>"

templates/pr-templates/default.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
<!-- Submit a new feature, bug fix, or improvement -->
12
---
3+
24
name: 🚀 Pull Request
35
about: Submit a new feature, bug fix, or improvement
46
title: "[PR] <short summary>"

templates/pr-templates/docs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Propose improvements or additions to project documentation -->
12
---
23
name: 📚 Documentation Update
34
about: Propose improvements or additions to project documentation

templates/pr-templates/dx.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Share feedback or suggestions to improve the developer experience -->
12
---
23
name: 🛠️ Developer Experience Feedback
34
about: Share feedback or suggestions to improve the developer experience

templates/pr-templates/feature.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Propose and implement a new feature -->
12
---
23
name: ✨ Feature Request
34
about: Propose and implement a new feature

0 commit comments

Comments
 (0)