Skip to content

feat: enable pipelineruns for signing #4478

feat: enable pipelineruns for signing

feat: enable pipelineruns for signing #4478

Workflow file for this run

---
name: Linters
on: # yamllint disable-line rule:truthy
pull_request:
types: ['opened', 'reopened', 'synchronize']
workflow_dispatch:
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run yamllint
uses: frenck/action-yamllint@v1
tknparse:
runs-on: ubuntu-latest
steps:
- name: checkout files
uses: actions/checkout@v4
- name: install tkn
uses: ./.github/actions/install-tkn
- name: Get changed files
uses: tj-actions/changed-files@v41
id: changed-files
with:
files: |
**/*.yaml
- name: Run tkn util
run: .github/scripts/tkn_check_parse.sh
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
GITHUB_SHA: ${{ github.sha }}
GITHUB_REFNAME: ${{ github.ref_name }}
gitlint:
name: Run gitlint checks
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Install gitlint into container
run: python -m pip install gitlint
- name: Run gitlint check
run: gitlint --commits origin/${{ github.event.pull_request.base.ref }}..HEAD
checkton:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
# Differential Checkton requires full git history
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Checkton
id: checkton
uses: chmeliik/[email protected]
# Migrating to the konflux-ci org
with:
fail-on-findings: true
find-copies-harder: true