Skip to content

Commit

Permalink
🌱 run pr title check on PR meta changes
Browse files Browse the repository at this point in the history
This also brings the ansible-lint into the PR checks.

Signed-off-by: David Zager <[email protected]>
  • Loading branch information
djzager committed Jan 18, 2024
1 parent 0ab294c commit b7b28ed
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 55 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/ansible-lint.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/pr-checks.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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
when: ${{ 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: ansible-lint
runs-on: ubuntu-latest
env:
IMG: ttl.sh/konveyor-operator-${{ github.sha }}:1h
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 }}:1h
13 changes: 13 additions & 0 deletions .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: PR Title Check

on:
pull_request_target:
types: [opened, edited, reopened, synchronize]

jobs:
verify-pr:
runs-on: ubuntu-latest
steps:
- uses: konveyor/release-tools/cmd/verify-pr@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b7b28ed

Please sign in to comment.