Skip to content

feat: Show description tooltip on editor component #404

feat: Show description tooltip on editor component

feat: Show description tooltip on editor component #404

name: Busola Local Build
on:
push:
branches:
- main
paths:
- ".github/workflows/busola-local-build.yml"
- "backend/**"
- "public/**"
- "src/**"
- "tests/**"
- "package.json"
- "Makefile"
- "Dockerfile.local"
pull_request_target:
types: [opened, edited, synchronize, reopened, ready_for_review]
paths:
- ".github/workflows/busola-local-build.yml"
- "backend/**"
- "public/**"
- "src/**"
- "tests/**"
- "package.json"
- "Makefile"
- "Dockerfile.local"
permissions:
id-token: write # This is required for requesting the JWT token
contents: read # This is required for actions/checkout
jobs:
build-local-image:
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: busola
dockerfile: Dockerfile.local
context: .
export-tags: true
test-local-image:
runs-on: ubuntu-latest
needs: build-local-image
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-local-image.outputs.images }}"