Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/check-codeowners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Gen CODEOWNERS
run: |
cd pr
GITHUB_TOKEN=${{ steps.otelbot-token.outputs.token }} ../.tools/githubgen codeowners
GITHUB_TOKEN=${{ steps.otelbot-token.outputs.token }} make codeowners
git diff -s --exit-code || (echo 'Generated code is out of date, please run "make gencodeowners" or apply this diff and commit the changes in this PR.' && git diff && exit 1)

- run: ./.github/workflows/scripts/check-disk-space.sh
4 changes: 2 additions & 2 deletions .github/workflows/generate-component-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
branches: [main]
paths:
- .github/CODEOWNERS
- ./.github/workflows/generate-component-labels.yml
- ./.github/workflows/scripts/generate-component-labels.sh
- .github/workflows/generate-component-labels.yml
- .github/workflows/scripts/generate-component-labels.sh
workflow_dispatch:

permissions:
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,10 @@ update-codeowners: generate gengithub
gencodeowners:
$(GITHUBGEN) -skipgithub

.PHONY: codeowners
codeowners:
$(GITHUBGEN) codeowners

.PHONY: generate-chloggen-components
generate-chloggen-components:
$(GITHUBGEN) chloggen-components
Expand Down
Loading