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/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..2cef137 --- /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: '["csharp","actions"]' + secrets: inherit