-
Notifications
You must be signed in to change notification settings - Fork 0
ci: wire org-wide security-scan + dependabot + CODEOWNERS #3
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 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 | ||
|
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. The pull request description mentions the addition of |
||
| 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 | ||
| 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.
For organization-owned repositories, it is a best practice to assign a team (e.g.,
@resq-software/maintainers) as the default owner rather than an individual user. This ensures that code review responsibilities are shared and remain functional even if an individual's availability or role changes.