diff --git a/.github/workflows/pr-convention.yml b/.github/workflows/pr-convention.yml index e4b92cfb88..7492cd48cc 100644 --- a/.github/workflows/pr-convention.yml +++ b/.github/workflows/pr-convention.yml @@ -14,6 +14,16 @@ jobs: name: Check PR Title runs-on: ubuntu-latest steps: - - uses: amannn/action-semantic-pull-request@v5 + - name: All PRs + uses: amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Bounty PRs + if: contains(github.event.pull_request.labels.*.name, '🙋 Bounty claim') + uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + requireScope: true + scopes: \d+ diff --git a/Cargo.lock b/Cargo.lock index 71061c07e2..95f6b73860 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4931,9 +4931,9 @@ checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" [[package]] name = "serde" -version = "1.0.205" +version = "1.0.206" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150" +checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284" dependencies = [ "serde_derive", ] @@ -4981,9 +4981,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.205" +version = "1.0.206" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1" +checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97" dependencies = [ "proc-macro2", "quote", diff --git a/src/cli/llm/wizard.rs b/src/cli/llm/wizard.rs index c973610860..5404d813a0 100644 --- a/src/cli/llm/wizard.rs +++ b/src/cli/llm/wizard.rs @@ -17,7 +17,11 @@ impl Wizard { pub fn new(model: String) -> Self { Self { client: Client::builder() - .with_chat_options(ChatOptions::default().with_json_mode(true)) + .with_chat_options( + ChatOptions::default() + .with_json_mode(true) + .with_temperature(0.0), + ) .build(), model, _q: Default::default(),