-
Notifications
You must be signed in to change notification settings - Fork 0
ci: wire org-wide security-scan + CODEOWNERS #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using a single individual (@WomB0ComB0) as the global code owner is a maintenance risk. For an organization-level repository, it is recommended to use a team (e.g., @resq-software/maintainers) to ensure that PR reviews and repository management are not dependent on a single person's availability. |
||
| 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: '["actions"]' | ||
| secrets: inherit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pull request title and description indicate that this PR adds
.github/workflows/security.ymlto implement organization-wide security scanning. However, this file is missing from the current changes. Please include the intended workflow file to fulfill the PR's objective.