Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
4 changes: 4 additions & 0 deletions 4 .github/workflows/dependabot-critical-alerts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ permissions:
jobs:
alert:
name: Post critical alerts
# Set the ENABLE_DEPENDABOT_ALERTS repository variable to 'false' to turn off
# the Dependabot alert/summary notifiers — e.g. forks/mirrors that lack the
# DEPENDABOT_ALERTS_TOKEN / SLACK_BOT_TOKEN secrets. Defaults to enabled.
if: ${{ vars.ENABLE_DEPENDABOT_ALERTS != 'false' }}
runs-on: ubuntu-latest
environment: dependabot-summary
env:
Expand Down
4 changes: 4 additions & 0 deletions 4 .github/workflows/dependabot-weekly-summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ permissions:
jobs:
summary:
name: Post weekly Dependabot summary
# Set the ENABLE_DEPENDABOT_ALERTS repository variable to 'false' to turn off
# the Dependabot alert/summary notifiers — e.g. forks/mirrors that lack the
# DEPENDABOT_ALERTS_TOKEN / SLACK_BOT_TOKEN secrets. Defaults to enabled.
if: ${{ vars.ENABLE_DEPENDABOT_ALERTS != 'false' }}
runs-on: ubuntu-latest
environment: dependabot-summary
env:
Expand Down
9 changes: 7 additions & 2 deletions 9 .github/workflows/helm-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,15 @@ jobs:

prerelease:
needs: lint-and-test
# Set the ENABLE_HELM_PRERELEASE repository variable to 'false' to turn off
# publishing the chart to GHCR — e.g. forks/mirrors that lack write_package
# on the owner's charts namespace. Defaults to enabled; the lint-and-test
# job above always runs regardless.
if: |
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) ||
vars.ENABLE_HELM_PRERELEASE != 'false' &&
((github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) ||
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch'
github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
5 changes: 5 additions & 0 deletions 5 .github/workflows/release-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ jobs:

release:
needs: lint-and-test
# Set the ENABLE_HELM_PRERELEASE repository variable to 'false' to turn off
# publishing the chart to GHCR — e.g. forks/mirrors that lack write_package
# on the owner's charts namespace. Defaults to enabled; the lint-and-test
# job above always runs regardless.
if: ${{ vars.ENABLE_HELM_PRERELEASE != 'false' }}
Comment thread
d-cs marked this conversation as resolved.
runs-on: ubuntu-latest
permissions:
contents: write # for gh-release
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.