chore: add Apache-2.0 license headers and install canonical git hooks #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |