From 21164d067b6357bacfbc7b7fdf1adb760492cd5a Mon Sep 17 00:00:00 2001 From: Mike Odnis Date: Tue, 14 Apr 2026 18:17:59 -0400 Subject: [PATCH] ci: wire org-wide security-scan + dependabot + CODEOWNERS Standardization pass across public ResQ repos. Inherits org-level defaults (CoC / Contributing / Security / Support / PR + issue templates) from resq-software/.github. .github/workflows/security.yml Thin caller for the reusable workflow with languages=["actions"]. .github/dependabot.yml Weekly grouped updates for: github-actions. .github/CODEOWNERS Default owner. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/CODEOWNERS | 2 ++ .github/dependabot.yml | 18 ++++++++++++++++++ .github/workflows/security.yml | 27 +++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/security.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..1a70074 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Default owner for everything not matched by a more specific rule. +* @WomB0ComB0 diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d1d9091 --- /dev/null +++ b/.github/dependabot.yml @@ -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 +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 diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..522f7ea --- /dev/null +++ b/.github/workflows/security.yml @@ -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