Skip to content
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

[release-1.17] Fixed the CI issue for branch 1.17 #2021

Merged
merged 1 commit into from
Mar 11, 2025
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ ignore:
- "test"
- "third_party"
- "vendor"
- "pkg/reconciler/common/deployments.go"
- "pkg/reconciler/common/stages.go"
- "pkg/reconciler/common/install.go"
- "pkg/reconciler/knativeserving/knativeserving.go"
- "pkg/reconciler/knativeeventing/knativeeventing.go"
16 changes: 7 additions & 9 deletions .github/workflows/publish-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
release:
types: [published]

workflow_dispatch:

jobs:
release:

Expand Down Expand Up @@ -32,21 +34,17 @@ jobs:
mv hack/find_helm_chart_releases_and_create_helm_index.sh ../.tmp/
mv hack/gh-pages.tmpl ../.tmp/

PAGES_BRANCH="gh-pages"

git fetch --all --tags

if git show-ref --verify --quiet refs/heads/$PAGES_BRANCH || git ls-remote --exit-code --heads origin $PAGES_BRANCH; then
if git show-ref --verify --quiet refs/heads/gh-pages || git ls-remote --exit-code --heads origin gh-pages; then
# Branch exists
git checkout $PAGES_BRANCH
echo "Checked out existing branch '$PAGES_BRANCH'"
git checkout gh-pages
echo "Checked out existing branch 'gh-pages'"
else
# Branch does not exist
git symbolic-ref HEAD refs/heads/$PAGES_BRANCH
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
echo ".tmp/" > .gitignore
echo "Created and checked out new branch '$PAGES_BRANCH'"
echo "Created and checked out new branch 'gh-pages'"
fi

mv ../.tmp ./
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ anaconda-mode/
Session.vim
# temporary
.netrwhist
# auto-generated tag files
tags

### VisualStudioCode ###
.vscode/*
.history
Expand Down
5 changes: 3 additions & 2 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ run:
- postupgrade
- postdowngrade

skip-dirs:
- pkg/client
issues:
exclude-dirs:
- pkg/client # Excludes generated client

linters:
enable:
Expand Down
24 changes: 6 additions & 18 deletions OWNERS_ALIASES
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ aliases:
knative-admin:
- aliok
- cardil
- davidhadas
- dprotaso
- dsimansk
- evankanderson
Expand All @@ -58,9 +57,8 @@ aliases:
- knative-prow-robot
- knative-prow-updater-robot
- knative-test-reporter-robot
- nainaz
- psschwei
- salaboy
- matzew
- nrrso
- skonto
- upodroid
knative-release-leads:
Expand Down Expand Up @@ -102,6 +100,7 @@ aliases:
- davidhadas
- evankanderson
serving-approvers:
- dsimansk
- skonto
serving-reviewers:
- skonto
Expand All @@ -111,25 +110,14 @@ aliases:
- dprotaso
serving-writers:
- dprotaso
- dsimansk
- skonto
steering-committee:
- aliok
- davidhadas
- dprotaso
- dsimansk
- evankanderson
- nainaz
- psschwei
- salaboy
technical-oversight-committee:
- aliok
- davidhadas
- dprotaso
- dsimansk
- evankanderson
- nainaz
- psschwei
- salaboy
- matzew
- nrrso
ux-wg-leads:
- cali0707
- leo6leo
Expand Down
Loading
Loading