Skip to content
Draft
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: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
"actions/cleanup-branches": "0.2.1",
"actions/docker-build-push-image": "0.1.0",
"actions/docker-export-digest": "0.1.0",
"actions/docker-import-digests-push-manifest": "0.1.0"
"actions/docker-import-digests-push-manifest": "0.1.0",
"actions/go-flaky-tests": "0.1.0"
}
30 changes: 30 additions & 0 deletions actions/go-flaky-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 0.1.0 (2025-10-27)


### 🎉 Features

* add git history analysis to go flaky tests ([#1029](https://github.com/grafana/shared-workflows/issues/1029)) ([d005a71](https://github.com/grafana/shared-workflows/commit/d005a712405c56f649db427886a189e353322811))
* add go flaky tests github action ([#1013](https://github.com/grafana/shared-workflows/issues/1013)) ([ae1b33b](https://github.com/grafana/shared-workflows/commit/ae1b33b57e55c030a48e80b86c1c163559aee846))
* add go-flaky-tests action to release-please config ([#1416](https://github.com/grafana/shared-workflows/issues/1416)) ([eed6978](https://github.com/grafana/shared-workflows/commit/eed69781bdf177e1c126172712690dae79b0bc11))
* **go-flaky-tests:** add github issue management ([#1276](https://github.com/grafana/shared-workflows/issues/1276)) ([f2c0b02](https://github.com/grafana/shared-workflows/commit/f2c0b0223f8e954cdc034aed2de5be6b7a90df3d))
* **go-flaky-tests:** add ignored-tests option to filter out specific test failures ([#1359](https://github.com/grafana/shared-workflows/issues/1359)) ([1f61f1d](https://github.com/grafana/shared-workflows/commit/1f61f1dfffd8226c0a403db65c5c9a87fd80e6cb))


### 🐛 Bug Fixes

* **deps:** pin dependencies ([#1039](https://github.com/grafana/shared-workflows/issues/1039)) ([e30e6f6](https://github.com/grafana/shared-workflows/commit/e30e6f65b998ed50dafba32702007f0ba1f41f94))
* **deps:** update module github.com/stretchr/testify to v1.11.0 ([#1263](https://github.com/grafana/shared-workflows/issues/1263)) ([92d0612](https://github.com/grafana/shared-workflows/commit/92d06123e73d57688a53671d0239197efb06cc60))
* **deps:** update module github.com/stretchr/testify to v1.11.1 ([#1279](https://github.com/grafana/shared-workflows/issues/1279)) ([6901f03](https://github.com/grafana/shared-workflows/commit/6901f036a3aa16cfaaba7020f3515c31eaa2f999))


### 🤖 Continuous Integration

* enhance, fix, run pre-commit ([#1033](https://github.com/grafana/shared-workflows/issues/1033)) ([9ffb9ce](https://github.com/grafana/shared-workflows/commit/9ffb9cec67a7712b4247e4ac37eb69946d802aed))


### 🔧 Miscellaneous Chores

* **deps:** update actions/setup-go action to v6 ([#1299](https://github.com/grafana/shared-workflows/issues/1299)) ([6262c5e](https://github.com/grafana/shared-workflows/commit/6262c5e47024d01fd9a114356509ceb9872072b4))
* **deps:** update dependency go to v1.24.4 ([#1060](https://github.com/grafana/shared-workflows/issues/1060)) ([b98700b](https://github.com/grafana/shared-workflows/commit/b98700baac9733d6a8d155afde6141c004ed3a6a))
* **deps:** update dependency go to v1.25.0 ([#1251](https://github.com/grafana/shared-workflows/issues/1251)) ([5b400bc](https://github.com/grafana/shared-workflows/commit/5b400bcc8e746df9281ac11d28c10e4d26a20c9e))

## [Unreleased]

### Added
Expand Down
2 changes: 1 addition & 1 deletion actions/go-flaky-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4

- name: Go Flaky Tests
uses: grafana/shared-workflows/actions/go-flaky-tests@go-flaky-tests/v0.0.0
uses: grafana/shared-workflows/actions/go-flaky-tests@go-flaky-tests/v0.1.0
with:
loki-url: ${{ secrets.LOKI_URL }}
loki-username: ${{ secrets.LOKI_USERNAME }}
Expand Down