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
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ updates:
assignees:
- "anchildress1"
commit-message:
prefix: "deps"
prefix-development: "deps-dev"
prefix: "chore"
include: "scope"

# Enable version updates for GitHub Actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
echo "## 🔧 Installing dependencies" >> "$GITHUB_STEP_SUMMARY"
uv sync --locked --group dev
uv lock
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uv lock generates/updates uv.lock but does not install dependencies. In CI this makes the environment non-reproducible (it can resolve newer versions than what’s committed) and is redundant since make install already runs uv sync --locked --group dev. Prefer removing uv lock here, or replace it with a non-mutating validation like uv lock --locked if you want to assert the lockfile is up to date.

Suggested change
uv lock

Copilot uses AI. Check for mistakes.
make install
echo "✅ Dependencies installed" >> "$GITHUB_STEP_SUMMARY"

Expand Down
6 changes: 3 additions & 3 deletions .specify/scripts/bash/update-agent-context.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ cleanup() {
local exit_code=$?
rm -f /tmp/agent_update_*_$$
rm -f /tmp/manual_additions_$$
exit $exit_code
return $exit_code
}

# Set up cleanup trap
Expand Down Expand Up @@ -745,10 +745,10 @@ main() {

if [[ "$success" == true ]]; then
log_success "Agent context update completed successfully"
exit 0
return 0
else
log_error "Agent context update completed with errors"
exit 1
return 1
fi
}

Expand Down
3 changes: 1 addition & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"release-type": "python",
"include-component-in-tag": false,
"packages": {
".": {
"release-type": "python",
"package-name": "devto-mirror",
"include-component-in-tag": false,
"extra-files": [
"pyproject.toml",
"src/devto_mirror/__init__.py"
Expand Down
Loading