Skip to content

chore(main): release send-slack-message 2.0.4 #1092

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"actions/lint-pr-title": "1.2.0",
"actions/get-vault-secrets": "1.2.1",
"actions/dockerhub-login": "1.0.2",
"actions/send-slack-message": "2.0.3",
"actions/send-slack-message": "2.0.4",
"actions/push-to-gar-docker": "0.5.2",
"actions/aws-auth": "1.0.2",
"actions/build-push-to-dockerhub": "0.2.0",
Expand Down
10 changes: 10 additions & 0 deletions actions/send-slack-message/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [2.0.4](https://github.com/grafana/shared-workflows/compare/send-slack-message/v2.0.3...send-slack-message/v2.0.4) (2025-08-14)


### 🔧 Miscellaneous Chores

* **deps:** update actions/checkout action to v4.3.0 ([#1221](https://github.com/grafana/shared-workflows/issues/1221)) ([17ab531](https://github.com/grafana/shared-workflows/commit/17ab531bf2c16c79af38988e7caf7a3d8a37634b))
* **deps:** update actions/checkout action to v5 ([#1227](https://github.com/grafana/shared-workflows/issues/1227)) ([fd79c02](https://github.com/grafana/shared-workflows/commit/fd79c02730e0629f728e2f5c3d614545269208a9))
* **deps:** update slackapi/slack-github-action action to v2.1.0 ([#1078](https://github.com/grafana/shared-workflows/issues/1078)) ([88f8afc](https://github.com/grafana/shared-workflows/commit/88f8afc06316e7124c952557a87a42a3776a8b26))
* **deps:** update slackapi/slack-github-action action to v2.1.1 ([#1122](https://github.com/grafana/shared-workflows/issues/1122)) ([254923a](https://github.com/grafana/shared-workflows/commit/254923a5562af3a1909a2093c6d897f288b53f1e))

## [2.0.3](https://github.com/grafana/shared-workflows/compare/send-slack-message-v2.0.2...send-slack-message/v2.0.3) (2025-06-04)


Expand Down
8 changes: 4 additions & 4 deletions actions/send-slack-message/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Send Slack Message via Payload
id: slack
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.3
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.4
with:
method: chat.postMessage
payload: |
Expand All @@ -38,7 +38,7 @@ jobs:
}
- name: Update Slack Message via Payload
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.3
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.4
with:
method: chat.update
payload-templated: true
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
- name: Post to a Slack channel
id: slack
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.3
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.4
with:
method: chat.postMessage
payload: |
Expand All @@ -80,7 +80,7 @@ jobs:
"text": "Deployment started (In Progress)"
}
- name: Respond to Slack Message
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.3
uses: grafana/shared-workflows/actions/send-slack-message@send-slack-message/v2.0.4
with:
method: chat.postMessage
payload-templated: true
Expand Down