Move Tekton from Pulumi to Flux #3938
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: Check pre-commit hooks | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: read-all | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
pre-commit-checks: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout | |
uses: >- # v4.2.2 | |
actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Prepare Worker | |
uses: ./.github/actions/prepare-nix | |
- name: Run pre-commit hooks | |
run: nix flake check |