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] feat(helm): make PR with changes to deal with branch protection rules #1987

Merged
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
37 changes: 34 additions & 3 deletions .github/workflows/publish-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:

permissions:
contents: write
pull-requests: write

runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -65,7 +66,37 @@ jobs:
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
git commit -m "update helm chart repository index.yaml"

git push origin gh-pages
git commit -m "update helm chart repository index"
fi

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
branch: feat/update-helm-repo-index-${{ github.sha }}
base: gh-pages
title: Update Helm Chart Repository Index
body: |
<!--
Are you using Knative? If you do, we would love to know!
https://github.com/knative/community/issues/new?template=ADOPTERS.yaml&title=%5BADOPTERS%5D%3A+%24%7BCOMPANY+NAME+HERE%7D
-->

<!--
Request Prow to automatically lint any go code in this PR:

/lint
-->

## Proposed Changes

* Update Helm Chart Repository Index - generated by the publish-helm.yaml workflow

**Release Note**

<!-- Enter your extended release note in the below block. If the PR requires
additional action from users switching to the new release, include the string
"action required". If no release note is required, write "NONE". -->

```release-note
NONE
```
Loading