-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,51 +17,6 @@ permissions: # used by build images steps | |
contents: write # This is required for actions/checkout and builds | ||
|
||
jobs: | ||
# TODO: Do we need this check? Our tests on main depends on what have changed. | ||
# verify-head-status: | ||
# name: Verify HEAD | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
# | ||
# - name: Verify github actions | ||
# run: ./.github/scripts/verify-actions-status.sh ${{ github.ref_name }} | ||
|
||
# TODO: This steps cannot be executed on fork, so I need to adjust them later | ||
# upgrade-images: | ||
# name: Upgrade main images | ||
# needs: verify-head-status | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# token: ${{ secrets.BOT_TOKEN }} | ||
# fetch-depth: 0 | ||
|
||
# - name: Bump values.yaml | ||
# run: | | ||
# ./hack/replace_serverless_chart_images.sh all . | ||
# env: | ||
# IMG_DIRECTORY: "prod" | ||
# IMG_VERSION: ${{ github.event.inputs.name }} | ||
# PROJECT_ROOT: "." | ||
# | ||
# | ||
# - name: Commit&Push | ||
# run: | | ||
# git config --local user.email "[email protected]" | ||
# git config --local user.name "ottersbot" | ||
# | ||
# git add . | ||
# git commit --allow-empty -m "upgrade dependencies" | ||
# git push origin ${{ github.ref_name }} | ||
|
||
build-web: | ||
name: Build Busola web | ||
uses: ./.github/workflows/busola-web-build.yml | ||
|
@@ -73,7 +28,6 @@ jobs: | |
with: | ||
tag: ${{ github.event.inputs.name }} | ||
|
||
# TODO: Run integration tests? | ||
# integrations: | ||
# needs: create-draft | ||
# secrets: inherit | ||
|