Skip to content
This repository was archived by the owner on Jun 24, 2026. It is now read-only.
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
12 changes: 12 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env sh
set -eu

# ensure gitleaks is available
if ! command -v gitleaks >/dev/null 2>&1; then
echo "Error: gitleaks is not installed or not in PATH." >&2
echo "Install: https://github.com/gitleaks/gitleaks#install" >&2
exit 1
fi

# scan for secrets before commit
gitleaks protect -v --staged
17 changes: 9 additions & 8 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@

# This file pairs with the automated code review assignment setting to make that system work
# https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team

# Docs: https://help.github.com/articles/about-codeowners/


# default owners for the entire repo
* @GoogleChrome/lighthouse-hackers
# Pipelines Codeowners rules
.github/** @quanta-computing/owners-pipelines
.yamlfix.toml @quanta-computing/owners-pipelines

# Security Codeowners rules
.gitleaks.toml @quanta-computing/owners-security
.gitleaksignore @quanta-computing/owners-security
.githooks/pre-commit @quanta-computing/owners-security
**/secu-*.yml @quanta-computing/owners-security
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/Feature_request.md

This file was deleted.

9 changes: 0 additions & 9 deletions .github/ISSUE_TEMPLATE/Other.md

This file was deleted.

102 changes: 0 additions & 102 deletions .github/ISSUE_TEMPLATE/bug-report.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: monthly
open-pull-requests-limit: 50
labels:
- 'dependencies'
- 'gha'
13 changes: 0 additions & 13 deletions .github/scripts/bump-nightly-version.sh

This file was deleted.

24 changes: 0 additions & 24 deletions .github/scripts/generate-devtools-hash.sh

This file was deleted.

81 changes: 0 additions & 81 deletions .github/scripts/git-get-shared-history.sh

This file was deleted.

13 changes: 0 additions & 13 deletions .github/scripts/jest-retry.sh

This file was deleted.

29 changes: 0 additions & 29 deletions .github/scripts/print-devtools-relevant-commits.sh

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: actionlint

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- ".github/**"

jobs:
action-lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Ensure SHA pinned actions
uses: centreon/github-actions-ensure-sha-pinned-actions@47d553c67ceb08ad660deaeb3b994e47a3dd8fc3 # v3.0.23.3
with:
allowlist: |
centreon/security-tools
Loading
Loading