-
Notifications
You must be signed in to change notification settings - Fork 428
chore: purge the "workflow step" terminology #2199
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
76c538f
chore: purge the "workflow step" terminology
WilliamBergamin 6d15ab2
Fix typos
WilliamBergamin 9e0d9b5
Update App.ts
WilliamBergamin ee4f66f
Update docs/content/steps/steps.md
WilliamBergamin 5750c43
Improve based on feedback
WilliamBergamin bc4853f
Merge branch 'purge-workflow-step-terminology' of https://github.com/…
WilliamBergamin e0e38b2
Merge branch 'main' into purge-workflow-step-terminology
WilliamBergamin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,29 @@ | ||
| --- | ||
| title: Overview of Workflow Steps from Apps | ||
| title: Overview of steps from apps | ||
| lang: en | ||
| slug: /concepts/steps | ||
| --- | ||
|
|
||
| :::danger | ||
|
|
||
| Workflow Steps from Apps are a deprecated feature. | ||
| Steps from Apps are a deprecated feature. | ||
|
|
||
| Workflow Steps from Apps are different than, and not interchangable with, Slack automation workflows. We encourage those who are currently publishing Workflow Steps from Apps to consider the new [Slack automation features](https://api.slack.com/automation), such as [custom functions for Bolt](/concepts/creating-custom-functions). | ||
| Steps from Apps are different than, and not interchangeable with, Slack automation workflows. We encourage those who are currently publishing steps from apps to consider the new [Slack automation features](https://api.slack.com/automation), such as [custom steps for Bolt](https://api.slack.com/automation/functions/custom-bolt). | ||
|
|
||
| Please [read the Slack API changelog entry](https://api.slack.com/changelog/2023-08-workflow-steps-from-apps-step-back) for more information. | ||
|
|
||
| ::: | ||
|
|
||
| --- | ||
|
|
||
| Workflow Steps from Apps allow your app to create and process custom workflow steps that users can add using [Workflow Builder](https://api.slack.com/workflows). | ||
| Steps from apps allow your app to create and process steps that users can add using [Workflow Builder](https://api.slack.com/workflows). | ||
|
|
||
| A workflow step is made up of three distinct user events: | ||
| A step from app is made up of three distinct user events: | ||
|
|
||
| - Adding or editing the step in a Workflow | ||
| - Saving or updating the step's configuration | ||
| - The end user's execution of the step | ||
|
|
||
| All three events must be handled for a workflow step to function. | ||
| All three events must be handled for a step from app to function. | ||
|
WilliamBergamin marked this conversation as resolved.
|
||
|
|
||
| Read more about Workflow Steps from Apps in the [API documentation](https://api.slack.com/legacy/workflows/steps). | ||
| Read more about steps from apps in the [API documentation](https://api.slack.com/legacy/workflows/steps). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,7 @@ const sidebars = { | |
| 'basic/options', | ||
| 'basic/authenticating-oauth', | ||
| 'basic/socket-mode' | ||
| ], | ||
| ], | ||
| }, | ||
| { | ||
| type: 'category', | ||
|
|
@@ -78,7 +78,7 @@ const sidebars = { | |
| }, | ||
| { | ||
| type: 'category', | ||
| label: 'Workflow steps (Deprecated)', | ||
| label: 'Steps from apps (Deprecated)', | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In some soonish enough date 🪓 👀 |
||
| items: [ | ||
| 'steps/steps', | ||
| 'steps/creating-steps', | ||
|
|
@@ -87,7 +87,7 @@ const sidebars = { | |
| 'steps/executing-steps', | ||
| ], | ||
| }, | ||
| {type: 'html', value: '<hr>'}, | ||
| { type: 'html', value: '<hr>' }, | ||
| { | ||
| type: 'category', | ||
| label: 'Tutorials', | ||
|
|
@@ -98,9 +98,9 @@ const sidebars = { | |
| 'tutorial/migration-v3' | ||
| ], | ||
| }, | ||
| {type: 'html', value: '<hr>'}, | ||
| { type: 'html', value: '<hr>' }, | ||
| 'reference', | ||
| {type: 'html', value: '<hr>'}, | ||
| { type: 'html', value: '<hr>' }, | ||
| { | ||
| type: 'link', | ||
| label: 'Release notes', | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.