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
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Default owner for everything not matched by a more specific rule.
* @WomB0ComB0
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

For organization-owned repositories, it is a best practice to assign a team (e.g., @resq-software/maintainers) as the default owner rather than an individual user. This ensures that code review responsibilities are shared and remain functional even if an individual's availability or role changes.

* @resq-software/maintainers

18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2026 ResQ Software
# SPDX-License-Identifier: Apache-2.0
#
# Weekly dependency updates, grouped to keep PR noise low.

version: 2
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The pull request description mentions the addition of .github/workflows/security.yml, but this file is missing from the current changes. Additionally, the description notes languages=['actions'] for the scan; however, given the presence of MDX files and OpenAPI specs in this repository, consider including javascript in the scan languages to ensure comprehensive coverage.

updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
time: "06:17"
groups:
github-actions:
patterns: ["*"]
labels: [chore, deps]
open-pull-requests-limit: 5
27 changes: 27 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2026 ResQ Software
# SPDX-License-Identifier: Apache-2.0
#
# Thin caller for the org-wide reusable security-scan workflow in
# resq-software/.github.

name: security

on:
push:
branches: [main, master]
pull_request:
schedule:
- cron: '17 6 * * 1'
workflow_dispatch:

permissions:
contents: read
security-events: write
pull-requests: read

jobs:
scan:
uses: resq-software/.github/.github/workflows/security-scan.yml@main
with:
languages: '["actions"]'
secrets: inherit