feat: add extra containers to kratos cleanup cronjob #80
Workflow file for this run
This file contains hidden or 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: Validation - GHA Linter | |
on: | |
merge_group: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- master | |
jobs: | |
validate: | |
name: Validate GHA | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
base: master | |
filters: | | |
workflows: | |
- '.github/**' | |
- name: Setup dependencies | |
if: ${{ steps.filter.outputs.workflows == 'true' }} | |
run: | | |
make .bin/actionlint | |
- name: Make lint | |
if: ${{ steps.filter.outputs.workflows == 'true' }} | |
run: | | |
make gha-lint |