apiVersion: config.lighthouse.jenkins-x.io/v1alpha1
kind: TriggerConfig
spec:
  postsubmits:
    - name: semver
      agent: tekton-pipeline
      branches:
        - ^main$
        - ^master$
      max_concurrency: 1
      # Override https-based url from lighthouse events.
      clone_uri: "git@code.fizz.buzz:talexander/organic.git"
      pipeline_run_spec:
        serviceAccountName: build-bot
        pipelineRef:
          name: semver
          namespace: lighthouse
        workspaces:
          - name: git-source
            volumeClaimTemplate:
              spec:
                storageClassName: "nfs-client"
                accessModes:
                  - ReadWriteOnce
                resources:
                  requests:
                    storage: 10Gi
            subPath: organic-source
        params: []
    - name: rustfmt
      source: "pipeline-rustfmt.yaml"
      # Override https-based url from lighthouse events.
      clone_uri: "git@code.fizz.buzz:talexander/organic.git"
      branches:
        - ^main$
        - ^master$
    - name: rust-test
      source: "pipeline-rust-test.yaml"
      # Override https-based url from lighthouse events.
      clone_uri: "git@code.fizz.buzz:talexander/organic.git"
      skip_branches:
        # We already run on every commit, so running when the semver tags get pushed is causing needless double-processing.
        - "^v[0-9]+\\.[0-9]+\\.[0-9]+$"