From b67a80426d4a9143981ecd530f6b3e6e3b0313a5 Mon Sep 17 00:00:00 2001 From: Tyler Doyle Date: Wed, 22 Sep 2021 17:18:07 -0700 Subject: [PATCH] Revert slack.yml to unblock open PRs I don't have the time to figure out a fix for the moment, this might be the fastest way --- .github/workflows/slack.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/slack.yml diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml deleted file mode 100644 index c3b17e8c4..000000000 --- a/.github/workflows/slack.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: 💬 Send Message to Slack 🚀 - -on: [push, pull_request, issues] - -jobs: - slack-notifications: - runs-on: ubuntu-20.04 - name: Sends a message to Slack when a push, a pull request or an issue is made - steps: - - name: Send message to Slack API - uses: archive/github-actions-slack@v2.2.2 - id: notify - with: - slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }} - slack-channel: C019HCX84L9 - slack-text: Hello! Event "${{ github.event_name }}" in "${{ github.repository }}" 🤓 - - name: Result from "Send Message" - run: echo "The result was ${{ steps.notify.outputs.slack-result }}"