Skip to content
Open
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
13 changes: 13 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CODEOWNERS — reviewed by the workflow-security group for high-risk paths.
# Docs: https://docs.github.com/en/repositories/managing-your-repositories-settings-and-security/customizing-your-repository/about-code-owners
#
# The workflow-security group reviews CI/CD attack surface. Domain reviewers
# provide functional review via a separate CODEOWNERS entry per repo.

# Workflow files and composite actions — mandatory review by workflow-security.
/.github/workflows/ @qubic/workflow-security
/.github/actions/ @qubic/workflow-security
/.github/CODEOWNERS @qubic/workflow-security

# Repository-level automation config — mandatory review by workflow-security.
/.github/dependabot.yml @qubic/workflow-security
39 changes: 39 additions & 0 deletions .github/workflows/lint-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Lint workflows

on:
pull_request:
paths:
- '.github/workflows/**'
- '.github/actions/**'

concurrency:
group: lint-workflows-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
actionlint:
name: actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
persist-credentials: false
- name: Run actionlint
uses: reviewdog/action-actionlint@50842263c20a7c46bd0065b9e624d3c569db061e # v1.73.0
with:
fail_on_error: true

zizmor:
name: zizmor
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
persist-credentials: false
- name: Run zizmor
uses: zizmorcore/zizmor-action@6599ee8b7a49aef6a770f63d261d214911a7ce02 # v0.6.0
with:
persona: auditor
Loading