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
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: '["csharp","actions"]'
secrets: inherit
Loading