Skip to content

Commit 7036846

Browse files
committed
Merge branch 'develop'
2 parents 119a3c2 + ca1ff2a commit 7036846

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# File Created: 2025-03-05 11:10:40
1010
#
1111
# Modified By: mingcheng ([email protected])
12-
# Last Modified: 2025-03-05 11:34:07
12+
# Last Modified: 2025-03-05 17:42:51
1313
##
1414

1515
name: Cargo Build & Test
@@ -34,8 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v4
3636
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
37-
- run: rustup component add clippy
38-
- run: cargo clippy -- -D warnings
39-
- run: cargo fmt --all -- --check
37+
- run: rustup component add clippy && cargo clippy -- -D warnings
38+
- run: rustup component add rustfmt && cargo fmt --all -- --check
4039
- run: cargo build --verbose
4140
- run: cargo test --verbose

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ name = "aigitcommit"
33
version = "1.3.0"
44
edition = "2024"
55
description = "A simple git commit message generator by OpenAI compaction model."
6-
license = "MIT"
6+
license-file = "LICENSE"
77
readme = "README.md"
88
keywords = ["git", "openai", "tools"]
9-
authors = ["mingcheng<[email protected]"]
9+
authors = ["mingcheng <[email protected]"]
1010
repository = "https://github.com/mingcheng/aigitcommit"
1111
homepage = "https://github.com/mingcheng/aigitcommit"
1212
exclude = ["assets/*", "hooks/*"]
13+
categories = ["command-line-utilities", "development-tools::git-tools"]
1314

1415
[dependencies]
1516
reqwest = { version = "0.12.12", features = [

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# AIGitCommit
22

3+
[![Cargo Build & Test](https://github.com/mingcheng/aigitcommit/actions/workflows/rust.yml/badge.svg?branch=main)](https://github.com/mingcheng/aigitcommit/actions/workflows/rust.yml)
4+
35
![screenshots](./assets/screenshots.png)
46

57
A simple tool to help you write better Git commit messages using AI.

0 commit comments

Comments
 (0)