Skip to content

Commit

Permalink
Remove legacy tag (#1796)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamBergamin authored Apr 4, 2023
1 parent 4934d52 commit 165ce02
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/.ruby-version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.7.4
2.7.6

# This version number should track the Ruby version used in production: https://pages.github.com/versions/.
# If it is out of date, please update and send a PR with the change.
6 changes: 3 additions & 3 deletions docs/_includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@
<a href="{{ site.url | append: site.baseurl | append: localized_base_url }}/concepts#steps">
<li class="title">
{{ site.t[page.lang].steps }}
<span class="label-legacy">
<!--UNCOMMENT AFTER GA <span class="label-legacy">
{{ site.t[page.lang].legacy }}
</span>
</span> -->
</li>
</a>
{% assign workflow_steps = site.steps | sort: "order" | where: "lang", page.lang %} {% for step in workflow_steps %}
{% if step.slug != "steps-overview" %}
<a href="{{ site.url | append: site.baseurl | append: localized_base_url }}/concepts#{{ step.slug }}">
{% assign str = step.title %}
{% assign a = str | split: ' <span class="label-legacy">' %}
<!--UNCOMMENT AFTER GA {% assign a = str | split: ' <span class="label-legacy">' %} -->
<li>
{{ a[0] }}
</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/_steps/adding_editing_workflow_step.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Adding or editing workflow steps <span class="label-legacy">LEGACY</span>
title: Adding or editing workflow steps
lang: en
slug: adding-editing-steps
order: 3
Expand Down
2 changes: 1 addition & 1 deletion docs/_steps/creating_workflow_step.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Creating workflow steps <span class="label-legacy">LEGACY</span>
title: Creating workflow steps
lang: en
slug: creating-steps
order: 2
Expand Down
2 changes: 1 addition & 1 deletion docs/_steps/executing_workflow_steps.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Executing workflow steps <span class="label-legacy">LEGACY</span>
title: Executing workflow steps
lang: en
slug: executing-steps
order: 5
Expand Down
4 changes: 2 additions & 2 deletions docs/_steps/saving_workflow_step.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Saving step configurations <span class="label-legacy">LEGACY</span>
title: Saving step configurations
lang: en
slug: saving-steps
order: 4
Expand Down Expand Up @@ -52,4 +52,4 @@ const ws = new WorkflowStep('add_task', {
},
execute: async ({ step, complete, fail }) => {},
});
```
```
6 changes: 3 additions & 3 deletions docs/_steps/workflow_steps_overview.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
title: Overview of Workflow Steps for apps <span class="label-legacy">LEGACY</span>
title: Overview of Workflow Steps for apps
lang: en
slug: steps-overview
order: 1
---

<div class="section-content">

**⚠️ Workflow Steps from Apps are a legacy feature, not to be confused with workflows that are part of the next-gen beta. They are not interchangeable features. We encourage those who are currently publishing Workflow Steps from apps to join the beta - you can learn more about getting started with it [here](/bolt-js/future/getting-started).**
<!--UNCOMMENT AFTER GA **⚠️ Workflow Steps from Apps are a legacy feature, not to be confused with workflows that are part of the next-gen beta. They are not interchangeable features. We encourage those who are currently publishing Workflow Steps from apps to join the beta - you can learn more about getting started with it [here](/bolt-js/future/getting-started).** -->

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).

A workflow step is made up of three distinct user events:
A workflow step is made up of three distinct user events:

- Adding or editing the step in a Workflow
- Saving or updating the step's configuration
Expand Down

0 comments on commit 165ce02

Please sign in to comment.