Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changes/unreleased/NOTES-20260714-120419.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: NOTES
body: For developers of tfctl, added CONTRIBUTING.md, developer setup automation, and `make help`
time: 2026-07-14T12:04:19.469961-06:00
42 changes: 42 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
version: 2
# Update docker, github-actions, and gomod dependencies weekly with a semver-
# sensitive cooldown and maximum open PR limits.
updates:
- package-ecosystem: "docker"
open-pull-requests-limit: 1
directory: "/"
cooldown:
semver-major-days: 14
semver-minor-days: 7
semver-patch-days: 3
schedule:
interval: "weekly"
labels:
- dependencies
- automated

- package-ecosystem: "github-actions"
open-pull-requests-limit: 3
directory: "/"
cooldown:
semver-major-days: 14
semver-minor-days: 7
semver-patch-days: 3
schedule:
interval: "weekly"
labels:
- dependencies
- automated

- package-ecosystem: "gomod"
open-pull-requests-limit: 5
directory: "/"
cooldown:
semver-major-days: 14
semver-minor-days: 7
semver-patch-days: 3
schedule:
interval: "weekly"
labels:
- dependencies

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dependencies label doesn't exist in this repo

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

created

- automated
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ jobs:
with:
go-version-file: go.mod

- name: Read golangci-lint version
id: golangci-lint-version
run: echo "version=$(cat .golangci-lint-version | head -n 1)" >> $GITHUB_OUTPUT

- name: Run golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: v2.12
version: v${{ steps.golangci-lint-version.outputs.version }}

- name: Run go test
run: go test ./... -v
run: make check
1 change: 1 addition & 0 deletions .golangci-lint-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.12.2
Loading