refactor: clean up imports #824
Workflow file for this run
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
name: Pull Build Image | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- main | |
paths-ignore: | |
- ".github/**" | |
- ".reuse/**" | |
- "LICENSES/**" | |
- "config/**" | |
- "data/**" | |
- "docs/**" | |
- "scripts/**" | |
- "tests/**" | |
- "**/*.md" | |
- "doc_indexer/**" | |
- CODEOWNERS | |
- LICENSE | |
permissions: | |
id-token: write # This is required for requesting the JWT token | |
contents: read # This is required for actions/checkout | |
jobs: | |
build: | |
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main | |
with: | |
name: kyma-companion | |
dockerfile: Dockerfile | |
context: . | |
export-tags: true | |
test-image: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install jq | |
run: sudo apt-get install jq | |
- name: Extract image name from JSON | |
id: extract-image | |
run: | | |
echo "IMAGE_NAME=$(echo '${{ needs.build.outputs.images }}' | jq -r '.[0]')" >> $GITHUB_ENV | |
- name: Test image | |
run: ./scripts/shell/run-and-check-container.sh "$IMAGE_NAME" PR-${{ github.event.number }}-container |