🐛 Update PVC permissions #194
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 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 | |
with: | |
operator_bundle: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h |