From 4e1e009e3f9a2d3ea30c95abee574de3af76da51 Mon Sep 17 00:00:00 2001 From: jacoblogan Date: Mon, 28 Aug 2023 09:27:21 -0700 Subject: [PATCH] Update check_for_broken_links.yml --- .github/workflows/check_for_broken_links.yml | 22 -------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/check_for_broken_links.yml b/.github/workflows/check_for_broken_links.yml index 98afe5688ec..76f144a03c6 100644 --- a/.github/workflows/check_for_broken_links.yml +++ b/.github/workflows/check_for_broken_links.yml @@ -26,25 +26,3 @@ jobs: script: | const { checkLinks } = require('./tasks/link-checker.js'); return await checkLinks(); - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0 - with: - role-to-assume: arn:aws:iam::464149486631:role/github_action_read_slack_webhook_url - aws-region: us-west-2 - - name: Read secrets from AWS Secrets Manager into environment variables - uses: aws-actions/aws-secretsmanager-get-secrets@022e8919774ecb75e8e375656d7b1898936ab878 # v1.0.4 - with: - secret-ids: | - SLACK_WEBHOOK_URL - parse-json-secrets: true - - name: Send custom JSON data to Slack workflow - if: steps.checkLinks.outputs.result - id: slack - uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 - with: - payload: | - { - "message": "${{ steps.checkLinks.outputs.result }}" - } - env: - SLACK_WEBHOOK_URL: ${{ env.SLACK_WEBHOOK_URL_SLACK_WEBHOOK_URL }}