We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8373513 commit 4b1bf3bCopy full SHA for 4b1bf3b
1 file changed
.github/workflows/release.yml
@@ -84,6 +84,13 @@ jobs:
84
;;
85
esac
86
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
+
94
echo "has_changes=true" >> "$GITHUB_OUTPUT"
95
echo "next=$NEXT_VERSION" >> "$GITHUB_OUTPUT"
96
echo "semver=$SEMVER" >> "$GITHUB_OUTPUT"
0 commit comments