Skip to content
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
8 changes: 0 additions & 8 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
---
reviews:
profile: chill
collapse_walkthrough: false
sequence_diagrams: true
path_instructions:
- path: src/**/*.py
instructions: |
Expand All @@ -24,8 +21,3 @@ reviews:
- Clear CLI argument handling
- Proper error handling and user feedback
- Consistent logging and output formatting
tools:
ruff:
enabled: true
yamllint:
enabled: true
18 changes: 16 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,18 @@ jobs:

- name: Configure git
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

- name: Setup SSH signing
run: |
mkdir -p ~/.ssh
chmod 700 ~/.ssh
echo "${{ secrets.SIGNING_KEY }}" > ~/.ssh/signing_key
chmod 600 ~/.ssh/signing_key
git config gpg.format ssh
git config user.signingkey ~/.ssh/signing_key
git config commit.gpgsign true

- name: Determine version and create changelog
id: bumper
Expand Down Expand Up @@ -124,3 +134,7 @@ jobs:
generate_release_notes: true
})
core.setOutput('html_url', response.data.html_url)

- name: Cleanup SSH signing key
if: always()
run: rm -f ~/.ssh/signing_key
Loading