Skip to content
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

chore(main): release send-slack-message 2.0.1 #685

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.1.1",
"actions/get-vault-secrets": "1.0.1",
"actions/dockerhub-login": "1.0.0",
"actions/send-slack-message": "2.0.0",
"actions/send-slack-message": "2.0.1",
"actions/push-to-gar-docker": "0.1.0",
"actions/aws-auth": "1.0.0",
"actions/build-push-to-dockerhub": "0.1.0",
Expand Down
7 changes: 7 additions & 0 deletions actions/send-slack-message/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.0.1](https://github.com/grafana/shared-workflows/compare/send-slack-message-v2.0.0...send-slack-message-v2.0.1) (2025-01-24)


### 📝 Documentation

* update instructions after slack action v2 update ([#658](https://github.com/grafana/shared-workflows/issues/658)) ([077bbfe](https://github.com/grafana/shared-workflows/commit/077bbfebaf982b30cd01297eca94f9e3f02ccff9))

## [2.0.0](https://github.com/grafana/shared-workflows/compare/send-slack-message-v1.0.0...send-slack-message-v2.0.0) (2024-12-17)

### BREAKING CHANGE
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/[email protected].0
uses: grafana/shared-workflows/actions/[email protected].1
with:
method: chat.postMessage
payload: |
Expand All @@ -38,7 +38,7 @@ jobs:
}

- name: Update Slack Message via Payload
uses: grafana/shared-workflows/actions/[email protected].0
uses: grafana/shared-workflows/actions/[email protected].1
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/[email protected].0
uses: grafana/shared-workflows/actions/[email protected].1
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/[email protected].0
uses: grafana/shared-workflows/actions/[email protected].1
with:
method: chat.postMessage
payload-templated: true
Expand Down