Skip to content

🐛 Fix typo in java-external-provider tag #67

🐛 Fix typo in java-external-provider tag

🐛 Fix typo in java-external-provider tag #67

Workflow file for this run

name: Pull Request CI
on:
pull_request:
branches:
- main
- 'release-*.*'
jobs:
detect-changes:
runs-on: ubuntu-latest
# Required permissions
permissions:
pull-requests: read
# Set job outputs to values from filter step
outputs:
roles: ${{ steps.filter.outputs.roles }}
steps:
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
roles:
- 'roles/**'
ansible-lint:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.roles == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v2
- name: Ansible Lint
uses: ansible/ansible-lint-action@main
with:
path: "roles/"
build-operator:
needs: detect-changes
runs-on: ubuntu-latest
env:
IMG: ttl.sh/konveyor-operator-${{ github.sha }}:2h
steps:
- uses: actions/checkout@v3
- run: make docker-build docker-push
run-ci:
needs: build-operator
uses: konveyor/ci/.github/workflows/global-ci-bundle.yml@main
with:
operator: ttl.sh/konveyor-operator-${{ github.sha }}:2h