Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

[bot] Add security workflows & infer codeowners #2

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
17 changes: 17 additions & 0 deletions .github/workflows/codeowners-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Codeowners Validator"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
# Runs at 15:00 UTC every Monday
- cron: '0 15 * * 1'

jobs:
call-workflow:
uses: myhelix/security-workflows/.github/workflows/codeowners-validator.yml@v1.0.0
secrets:
owners-validator-github-secret: ${{ secrets.OWNERS_VALIDATOR_PUBLIC_GITHUB_SECRET }}
17 changes: 17 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
# Runs at 15:00 UTC every Monday
- cron: '0 15 * * 1'

jobs:
call-workflow:
uses: myhelix/security-workflows/.github/workflows/codeql-analysis-go.yml@v1.0.0
secrets:
go-modules-token: ${{ secrets.GO_MODULES_TOKEN }}