Skip to content

Commit 0ee1d99

Browse files
authored
ci: adjust outputs of changeset releases to reattempt most recent releases (#2718)
1 parent 05502d9 commit 0ee1d99

9 files changed

Lines changed: 15 additions & 21 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@slack/web-api": patch
3+
"@slack/webhook": patch
4+
---
5+
6+
fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Changelog
1414
runs-on: ubuntu-latest
1515
outputs:
16-
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
16+
hasChangesets: ${{ steps.changesets.outputs.has-changesets }}
1717
releaseExists: ${{ steps.published.outputs.exists }}
1818
permissions:
1919
contents: write
@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Check if publish is needed
6161
id: published
62-
if: steps.changesets.outputs.hasChangesets == 'false'
62+
if: steps.changesets.outputs.has-changesets == 'false'
6363
run: |
6464
EXISTS=true
6565
for PKG in $(npm query .workspace | jq -r '.[].name'); do
@@ -138,7 +138,7 @@ jobs:
138138
echo "message=$(echo "$PUBLISHED_PACKAGES" | jq -r '[.[] | "\(.name)@\(.version)"] | join(", ")')" >> "$GITHUB_OUTPUT"
139139
echo "action_url=$(echo "$PUBLISHED_PACKAGES" | jq -r '[.[] | "https://github.com/${{ github.repository }}/releases/tag/\(.name)@\(.version)"] | join(", ")')" >> "$GITHUB_OUTPUT"
140140
env:
141-
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
141+
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.published-packages }}
142142

143143
- name: Notify Slack
144144
if: steps.changesets.outputs.published == 'true'

docs/english/reference/web-api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @slack/web-api v8.1.1
1+
# @slack/web-api v8.1.0
22

33
## Enumerations
44

docs/english/reference/webhook/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @slack/webhook v8.0.2
1+
# @slack/webhook v8.0.1
22

33
## Enumerations
44

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web-api/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# @slack/web-api
22

3-
## 8.1.1
4-
5-
### Patch Changes
6-
7-
- aef66ac: fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))
8-
93
## 8.1.0
104

115
### Minor Changes

packages/web-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@slack/web-api",
3-
"version": "8.1.1",
3+
"version": "8.1.0",
44
"description": "Official library for using the Slack Platform's Web API",
55
"author": "Slack Technologies, LLC",
66
"license": "MIT",

packages/webhook/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# @slack/webhook
22

3-
## 8.0.2
4-
5-
### Patch Changes
6-
7-
- aef66ac: fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))
8-
93
## 8.0.1
104

115
### Patch Changes

packages/webhook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@slack/webhook",
3-
"version": "8.0.2",
3+
"version": "8.0.1",
44
"description": "Official library for using the Slack Platform's Incoming Webhooks",
55
"author": "Slack Technologies, LLC",
66
"license": "MIT",

0 commit comments

Comments
 (0)