Skip to content

Commit

Permalink
Merge pull request #109 from hoodie/feature/ci
Browse files Browse the repository at this point in the history
add pr template and update semver checks action
  • Loading branch information
hoodie authored Aug 25, 2024
2 parents e036d63 + 51b0ea9 commit 28b5c64
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!--
First and foremost, thank you for taking the time to contribute to this project! Your efforts are greatly appreciated.
## Semantic Commit Messages
Please ensure your commit messages follows the [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/),
as these are being used to automatically generate the changelog and determine the version bump for releases.
Most importantly: [Mark breaking changes accordingly](https://www.conventionalcommits.org/en/v1.0.0/#commit-message-with-description-and-breaking-change-footer)!
### Example
```
feat: add new user authentication module
fix: resolve issue with user not being able to login
feat!: remove deprecated user module
```
->>
Again, thank you for your contribution!
If you have any questions or need assistance, don't hesitate to ask. We're here to help!
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
rust:
- stable
- beta
- beta
- stable minus 8 releases
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
uses: obi1kenobi/cargo-semver-checks-action@v2.6

fmtclippy:
runs-on: ubuntu-latest
Expand All @@ -67,4 +67,4 @@ jobs:
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

- name: cargo-fmt
run: cargo fmt --all --check
run: cargo fmt --all --check

0 comments on commit 28b5c64

Please sign in to comment.