Skip to content

Commit f984c33

Browse files
authored
Merge branch 'main' into ale-fetch-remote-manifest
2 parents 3d642ca + 4b1bf3b commit f984c33

8 files changed

Lines changed: 36 additions & 24 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ jobs:
8484
;;
8585
esac
8686
87+
# Skip if docs already reference this version
88+
if grep -q "Using slack v${NEXT_VERSION}" docs/guides/installing-the-slack-cli-for-mac-and-linux.md; then
89+
echo "Docs already at v$NEXT_VERSION, nothing to release"
90+
echo "has_changes=false" >> "$GITHUB_OUTPUT"
91+
exit 0
92+
fi
93+
8794
echo "has_changes=true" >> "$GITHUB_OUTPUT"
8895
echo "next=$NEXT_VERSION" >> "$GITHUB_OUTPUT"
8996
echo "semver=$SEMVER" >> "$GITHUB_OUTPUT"

docs/guides/installing-the-slack-cli-for-mac-and-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t
9999

100100
**2\. Download the** `slack` **CLI installer for your environment.**
101101

102-
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_arm64.tar.gz)
102+
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_macOS_arm64.tar.gz)
103103

104-
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_amd64.tar.gz)
104+
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_macOS_amd64.tar.gz)
105105

106-
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
106+
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_linux_64-bit.tar.gz)
107107

108108
**3\. Add the** `slack` **CLI to your path.**
109109

@@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
121121

122122
```sh
123123
$ slack version
124-
Using slack v4.2.0
124+
Using slack v4.3.0
125125
```
126126

127127
</TabItem>

docs/guides/installing-the-slack-cli-for-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Manual installation allows you to customize certain paths used when installing t
102102

103103
**2\. Download the** `slack` **CLI installer for your environment.**
104104

105-
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
105+
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
106106

107107
**3\. Add the** `slack` **CLI to your path.**
108108

@@ -118,7 +118,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
118118

119119
```pwsh
120120
$ slack version
121-
Using slack v4.2.0
121+
Using slack v4.3.0
122122
```
123123

124124
</TabItem>

docs/reference/commands/slack_create.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ slack create [name | agent <name>] [flags]
1616
## Flags
1717

1818
```
19-
-b, --branch string name of git branch to checkout
20-
-h, --help help for create
21-
--list list available app templates
22-
-n, --name string name for your app (overrides the name argument)
23-
--subdir string subdirectory in the template to use as project
24-
-t, --template string template URL for your app
19+
-b, --branch string name of git branch to checkout
20+
-E, --environment string environment to save existing app (local, deployed)
21+
-h, --help help for create
22+
--list list available app templates
23+
-n, --name string name for your app (overrides the name argument)
24+
--subdir string subdirectory in the template to use as project
25+
-t, --template string template URL for your app
2526
```
2627

2728
## Global flags
@@ -56,6 +57,9 @@ $ slack create --name my-project
5657
5758
# Create from a subdirectory of a template
5859
$ slack create my-project -t org/monorepo --subdir apps/my-app
60+
61+
# Create from template and link to an existing app
62+
$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
5963
```
6064

6165
## See also

docs/reference/commands/slack_external-auth_add-secret.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ Add the client secret for an external provider of a workflow app.
88

99
This secret will be used when initiating the OAuth2 flow.
1010

11-
This command is supported for apps deployed to Slack managed infrastructure but
12-
other apps can attempt to run the command with the --force flag.
13-
1411
```
1512
slack external-auth add-secret [flags]
1613
```

docs/reference/commands/slack_project_create.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ slack project create [name | agent <name>] [flags]
1616
## Flags
1717

1818
```
19-
-b, --branch string name of git branch to checkout
20-
-h, --help help for create
21-
--list list available app templates
22-
-n, --name string name for your app (overrides the name argument)
23-
--subdir string subdirectory in the template to use as project
24-
-t, --template string template URL for your app
19+
-b, --branch string name of git branch to checkout
20+
-E, --environment string environment to save existing app (local, deployed)
21+
-h, --help help for create
22+
--list list available app templates
23+
-n, --name string name for your app (overrides the name argument)
24+
--subdir string subdirectory in the template to use as project
25+
-t, --template string template URL for your app
2526
```
2627

2728
## Global flags
@@ -56,6 +57,9 @@ $ slack create --name my-project
5657
5758
# Create from a subdirectory of a template
5859
$ slack create my-project -t org/monorepo --subdir apps/my-app
60+
61+
# Create from template and link to an existing app
62+
$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
5963
```
6064

6165
## See also

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
1818
github.com/oliamb/cutter v0.2.2
1919
github.com/opentracing/opentracing-go v1.2.0
20-
github.com/pelletier/go-toml/v2 v2.3.1
20+
github.com/pelletier/go-toml/v2 v2.4.0
2121
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
2222
github.com/pkg/errors v0.9.1
2323
github.com/radovskyb/watcher v1.0.7

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,8 +1019,8 @@ github.com/pborman/getopt v0.0.0-20170112200414-7148bc3a4c30/go.mod h1:85jBQOZwp
10191019
github.com/pborman/getopt v0.0.0-20180811024354-2b5b3bfb099b/go.mod h1:85jBQOZwpVEaDAr341tbn15RS4fCAsIst0qp7i8ex1o=
10201020
github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=
10211021
github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
1022-
github.com/pelletier/go-toml/v2 v2.3.1 h1:MYEvvGnQjeNkRF1qUuGolNtNExTDwct51yp7olPtrEc=
1023-
github.com/pelletier/go-toml/v2 v2.3.1/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
1022+
github.com/pelletier/go-toml/v2 v2.4.0 h1:Mwu0mAkUKbittDs3/ADDWXqMmq3EOK2VHiuCkV00Row=
1023+
github.com/pelletier/go-toml/v2 v2.4.0/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
10241024
github.com/pjbgf/sha1cd v0.6.0 h1:3WJ8Wz8gvDz29quX1OcEmkAlUg9diU4GxJHqs0/XiwU=
10251025
github.com/pjbgf/sha1cd v0.6.0/go.mod h1:lhpGlyHLpQZoxMv8HcgXvZEhcGs0PG/vsZnEJ7H0iCM=
10261026
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=

0 commit comments

Comments
 (0)