From a36b076e5560ed14f825ca47f187e323cfbf3960 Mon Sep 17 00:00:00 2001 From: Sean Hammond Date: Wed, 13 Sep 2023 12:28:08 +0100 Subject: [PATCH] Remove .github/workflows/slack.yml This was just a test. --- .github/workflows/slack.yml | 26 -------------------------- 1 file changed, 26 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 499d465..0000000 --- a/.github/workflows/slack.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Test posting to Slack -on: - workflow_dispatch: -jobs: - Slack: - runs-on: ubuntu-latest - steps: - - name: Test posting to Slack - uses: slackapi/slack-github-action@v1.24.0 - with: - channel-id: 'testing-github-actions-slack-bot' - payload: | - { - "text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}", - "blocks": [ - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}" - } - } - ] - } - env: - SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}