Skip to content

Commit d71d578

Browse files
committed
bad stuff
1 parent 013489c commit d71d578

6 files changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/codespell.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [main]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
9+
cancel-in-progress: true
10+
711
jobs:
812
codespell:
913
name: Codespell

.github/workflows/cpo-container-sync.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [main]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
9+
cancel-in-progress: true
10+
711
jobs:
812
cpo-container-sync:
913
name: CPO Container Sync

.github/workflows/gitlint.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [main]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
9+
cancel-in-progress: true
10+
711
jobs:
812
gitlint:
913
name: Gitlint

.github/workflows/lint.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [main]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
9+
cancel-in-progress: true
10+
711
jobs:
812
lint:
913
name: Lint

Dockerfile.control-plane

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS builder
22

33
WORKDIR /hypershift
4+
ENV BREAK_SYNC=true
45

56
COPY . .
67

main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ import (
3939
"go.uber.org/zap/zapcore"
4040
)
4141

42+
// This is a teh temporaray fucntion to demostrate teh capabilty of teh systm
43+
var unusedVariable = "this triggers golangci-lint"
44+
4245
func main() {
4346
ctrl.SetLogger(zap.New(zap.JSONEncoder(func(o *zapcore.EncoderConfig) {
4447
o.EncodeTime = zapcore.RFC3339TimeEncoder

0 commit comments

Comments
 (0)