Skip to content

🐛 install cr's before the hub is deployed #110

🐛 install cr's before the hub is deployed

🐛 install cr's before the hub is deployed #110

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@v4
- name: Ansible Lint
uses: ansible/ansible-lint-action@main
with:
path: "roles/"
build-operator-bundle:
needs: detect-changes
runs-on: ubuntu-latest
env:
IMG: ttl.sh/konveyor-operator-${{ github.sha }}:2h
BUNDLE_IMG: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h
steps:
- uses: actions/checkout@v4
- run: make docker-build docker-push
- run: make bundle bundle-build bundle-push
run-ci:
needs: build-operator-bundle
uses: konveyor/ci/.github/workflows/global-ci-bundle.yml@main

Check failure on line 53 in .github/workflows/pr-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr-ci.yml" -> "konveyor/ci/.github/workflows/global-ci-bundle.yml@main" (source branch with sha:fad66b74cd417d95e3a6d908e7259dae8f95c0bd) : you may only define up to 10 `inputs` for a `workflow_dispatch` event
with:
operator_bundle: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h