Skip to content
Open
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: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Every path has an owner, so GitHub requests a review from the founders team
# on each pull request.
* @scadable/founders
35 changes: 35 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Dependabot version updates. Weekly, at most five open pull requests per
# ecosystem, and minor and patch updates grouped into one pull request per
# ecosystem so they arrive together. A major update opens on its own, except
# for GitHub Actions, where every update is grouped (see that entry).
# Dependabot only opens pull requests; nothing in this file merges one.
version: 2
updates:
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
commit-message:
prefix: "chore"
include: "scope"
groups:
uv-minor-and-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
commit-message:
prefix: "chore"
include: "scope"
groups:
github-actions:
patterns:
- "*"
23 changes: 23 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Security policy

## Reporting a vulnerability

Please do not report security problems through public issues, discussions or
pull requests.

Email security@scadable.com with:

- what you found, and where: the URL, endpoint or repository;
- the steps to reproduce it;
- the impact you think it has;
- how we can reach you.

We reply within five business days. When we confirm a problem, we rate its
severity and fix it on the timeline that severity sets.

SCADABLE does not run a bug bounty program.

## Supported versions

Only the default branch is supported. A fix is made there and reaches users in
the next release or deploy.
Loading