Skip to content

fix: gofumpt formatting in cmd/dataset.go#107

Merged
nitisht merged 1 commit into
cleanupfrom
copilot/fix-github-actions-job
Jun 6, 2026
Merged

fix: gofumpt formatting in cmd/dataset.go#107
nitisht merged 1 commit into
cleanupfrom
copilot/fix-github-actions-job

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Jun 6, 2026

CI was failing on the gofumpt format check (test -z "$(gofumpt -l .)") due to misaligned struct fields in DatasetListItem.

Change

  • Align Name and Type fields with LastIngested in DatasetListItem to satisfy gofumpt:
// before
type DatasetListItem struct {
	Name string
	Type string
	LastIngested time.Time
}

// after
type DatasetListItem struct {
	Name         string
	Type         string
	LastIngested time.Time
}

Copilot AI changed the title fix: apply gofumpt formatting to cmd/dataset.go fix: gofumpt formatting in cmd/dataset.go Jun 6, 2026
Copilot AI requested a review from nitisht June 6, 2026 18:44
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 6, 2026

CLA Assistant Lite bot:
Thank you for your submission, we really appreciate it. Like many open-source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution. You can sign the CLA by just posting a Pull Request Comment same as the below format.


I have read the CLA Document and I hereby sign the CLA


You can retrigger this bot by commenting recheck in this Pull Request

@nitisht nitisht marked this pull request as ready for review June 6, 2026 18:51
@nitisht nitisht merged commit e6ebad0 into cleanup Jun 6, 2026
1 of 3 checks passed
@nitisht nitisht deleted the copilot/fix-github-actions-job branch June 6, 2026 18:52
@github-actions github-actions Bot locked and limited conversation to collaborators Jun 6, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants