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 6cedd07 commit 2c1c4aaCopy full SHA for 2c1c4aa
.github/scripts/slack-release-testing.mjs
@@ -391,6 +391,11 @@ async function main() {
391
392
const platform = process.env.PLATFORM;
393
394
+ if (!platform) {
395
+ console.error("Platform is not set. Please set the PLATFORM environment variable.");
396
+ return;
397
+ }
398
+
399
await initializeSlackTeams();
400
401
const activeReleases = await GetActiveReleases(documentId);
.github/workflows/publish-slack-release-testing-status.yml
@@ -65,6 +65,7 @@ jobs:
65
GOOG_DOCUMENT_ID: ${{ inputs.google-document-id }}
66
GOOGLE_APPLICATION_CREDENTIALS_BASE64: ${{ secrets.google-application-creds-base64 }}
67
TEST_ONLY: ${{inputs.test-only}}
68
+ PLATFORM: ${{inputs.platform}}
69
working-directory: ./github-tools
70
run: |
71
yarn run slack:release-testing
0 commit comments