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
16 changes: 10 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
# SPDX-FileCopyrightText: Sudo Apt Holdings LLC
# SPDX-License-Identifier: Apache-2.0
#
# Dependabot opens a pull request when a dependency has a security advisory or a newer
# release. A pull request is not an upgrade: VERSIONS.md is the pin list, and a version
# lands only after it is proposed in a slice's NOTES.md and approved (CLAUDE.md section 5).
# The value here is the alert arriving as a diff with the gate run against it.
# Dependabot opens a pull request only when a dependency has a security advisory. Version
# bumps are not raised: VERSIONS.md is the pin list, and a version lands only after it is
# proposed in a slice's NOTES.md and approved (CLAUDE.md section 5). On its first run, with
# the limit above zero, it opened five version-bump pull requests inside two minutes; one of
# them was merged by mistake. An open-pull-requests-limit of 0 keeps the security updates and
# drops the rest. The value here is a security alert arriving as a diff with the gate run
# against it.
version: 2
updates:
- package-ecosystem: mix
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
open-pull-requests-limit: 0
commit-message:
prefix: "chore(deps)"
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 0
commit-message:
prefix: "chore(ci)"
- package-ecosystem: cargo
directory: /src-tauri
schedule:
interval: weekly
open-pull-requests-limit: 3
open-pull-requests-limit: 0
commit-message:
prefix: "chore(deps)"
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
# --no-halt is what makes the exit mean anything. Burrito launches the release as
# `-s elixir start_cli`, and the Elixir CLI halts when its command list is empty, so
# without --no-halt the binary exits 0 on its own and `--smoke` proves nothing.
- name: Smoke test: boots, serves, exits by itself, leaves nothing behind
- name: "Smoke test: boots, serves, exits by itself, leaves nothing behind"
if: runner.os != 'Windows'
shell: bash
run: |
Expand Down
Loading