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