Closed palnabarun closed 2 years ago
/hold
I want to test it End to End. On the unit test side of things, I was wondering if I could wire up something.
Well that was easy enough. :joy:
/approve
What are you planning e2e-wise?
Well that was easy enough. :joy:
Yeah. The API change was pretty simple. Only one endpoint and one request parameter change were needed. 😅
What are you planning e2e-wise?
I was wondering if there is a way I can test the change without setting up the bot in a new Slack workspace like described in docs/app-creation.md.
You should be able to! If need be I can toss a slack workspace your way if you don't want to create one yourself.
@jeefy -- I set up a Slack workspace to experiment with. Will post updates on testing shortly.
👍 👍 👍
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale
/remove-lifecycle stale
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale
/remove-lifecycle stale @palnabarun did you know if it worked? If yes, we should merge this sooner rather than later 😬
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
/remove-lifecycle rotten /approve /lgtm /hold @palnabarun Can you confirm this worked in the slack workspace you tested it in? I know it's been a while lol
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: jeefy, palnabarun
The full list of commands accepted by this bot can be found here.
The pull request process is described here
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
Does this still need more testing?
/remove-lifecycle stale
/hold cancel
Let's finally get this merged in and if there are issues we can revert to a prior image.
Fixes #37
Deprecation Notice: https://api.slack.com/changelog/2020-01-deprecating-antecedents-to-the-conversations-api
Old API: https://api.slack.com/methods/im.open New API: https://api.slack.com/methods/conversations.open
The API method which got deprecated is
im.open
. The method (conversations.open
) which replaces it also changes the request parameters required.The deprecated API (
im.open
) required a request parameter calleduser
whose value was the Slack user ID of the user that we intend to open a message channel with.The new API method (
conversations.open
) provisions for the request parameterusers
which whose value needs to be a comma-separated list of up to 8 user IDs with whom we intend to start a conversation.Signed-off-by: Nabarun Pal pal.nabarun95@gmail.com