Skip to content

Commit 81189e7

Browse files
vdemeesterclaude
andcommitted
chore: bump minVersion, add PR template, fix CI tests
- Bump pipelines.minVersion from 0.53.0 to 1.0.0 - Add pull request template based on tektoncd conventions - Fix CI to actually run tests (was using -run=^$ which matches nothing) - Add go vet step to CI - Remove stale matrix reference from job name Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
1 parent 6a00bdd commit 81189e7

3 files changed

Lines changed: 23 additions & 5 deletions

File tree

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- Thank you for the PR! -->
2+
3+
# Changes
4+
5+
<!-- Describe your changes here — ideally from your descriptive commit message(s). -->
6+
7+
# Submitter Checklist
8+
9+
- [ ] Includes [tests](https://github.com/tektoncd/community/blob/main/standards.md#tests) for new or changed functionality
10+
- [ ] Includes [docs](https://github.com/tektoncd/community/blob/main/standards.md#docs) for user-facing changes
11+
- [ ] Commit messages follow [best practices](https://github.com/tektoncd/community/blob/main/standards.md#commits)
12+
- [ ] Meets the [Tekton contributor standards](https://github.com/tektoncd/community/blob/main/standards.md)
13+
14+
# Release Notes
15+
16+
```release-note
17+
NONE
18+
```

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run:
1616
working-directory: image/git-init
1717

18-
name: Build ${{ matrix.go-version }}
18+
name: Build
1919
runs-on: ubuntu-latest
2020

2121
steps:
@@ -31,6 +31,6 @@ jobs:
3131
# go-package: ./image/git-init/...
3232
# go-version-input: ${{ matrix.go-version }}
3333

34-
- run: |
35-
go build ./...
36-
go test -run=^$ ./...
34+
- run: go build ./...
35+
- run: go vet ./...
36+
- run: go test ./...

task/git-clone/git-clone.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
app.kubernetes.io/version: "1.4.0"
77
annotations:
8-
tekton.dev/pipelines.minVersion: "0.53.0"
8+
tekton.dev/pipelines.minVersion: "1.0.0"
99
tekton.dev/categories: Git
1010
tekton.dev/tags: git
1111
tekton.dev/displayName: "git clone"

0 commit comments

Comments
 (0)