diff --git a/.github/workflows/cron_watcher.yml b/.github/workflows/cron_watcher.yml index a6726a9dae5..0645b50e460 100644 --- a/.github/workflows/cron_watcher.yml +++ b/.github/workflows/cron_watcher.yml @@ -28,13 +28,13 @@ jobs: shell: python env: SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} - SLACK_CHANNEL_ABC_TEAM: ${{ secrets.SLACK_CHANNEL_ABC_TEAM }} + SLACK_CHANNEL_ABC_TEAM_PLUS: ${{ secrets.SLACK_CHANNEL_ABC_TEAM_PLUS }} run: | import os, sys, slack_sdk token = os.getenv("SLACK_TOKEN") - channel = os.getenv("SLACK_CHANNEL_ABC_TEAM") + channel = os.getenv("SLACK_CHANNEL_ABC_TEAM_PLUS") if token and channel: slack_sdk.WebClient(token=token).chat_postMessage(channel=channel, - text="[cron_watcher](https://github.com/internetarchive/openlibrary/actions/workflows/cron_watcher.yml) has failed.", + text=" has failed.", ) sys.exit(1)