Skip to content

Commit

Permalink
use correct output
Browse files Browse the repository at this point in the history
  • Loading branch information
jdettmannnava committed Jan 13, 2025
1 parent 2738c1c commit 7e8095e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_508_compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "${{ inputs.target_host || 'https://stage.dpc.cms.gov' }}=TARGET_BASE_URL" >> "$GITHUB_OUTPUT"
- name: Run Axe Check
env:
TARGET_BASE_URL: ${{ steps.target-base.outputs.target-base }}
TARGET_BASE_URL: ${{ steps.target-base.outputs.TARGET_BASE_URL }}
run: |
TARGETS_TO_SCAN="${TARGET_BASE_URL}"
TARGETS_TO_SCAN="${TARGETS_TO_SCAN} ${TARGET_BASE_URL}/faq.html"
Expand All @@ -45,7 +45,7 @@ jobs:
channel: "CMC1E4AEQ"
attachments:
- color: good
text: "SUCCESS: <${{ github.server_url}}/${{ github.repository}}/actions/runs/${{ github.run_id }}|Static Site 508 Compliance> completed against `${{ steps.target-base.outputs.target-base }}`"
text: "SUCCESS: <${{ github.server_url}}/${{ github.repository}}/actions/runs/${{ github.run_id }}|Static Site 508 Compliance> completed against `${{ steps.target-base.outputs.TARGET_BASE_URL }}`"
mrkdown_in:
- text
- uses: slackapi/slack-github-action@v2.0.0
Expand All @@ -59,6 +59,6 @@ jobs:
channel: "CMC1E4AEQ"
attachments:
- color: danger
text: "FAILURE: <${{ github.server_url}}/${{ github.repository}}/actions/runs/${{ github.run_id }}|Static Site 508 Compliance> completed against `${{ steps.target-base.outputs.target-base }}`"
text: "FAILURE: <${{ github.server_url}}/${{ github.repository}}/actions/runs/${{ github.run_id }}|Static Site 508 Compliance> completed against `${{ steps.target-base.outputs.TARGET_BASE_URL }}`"
mrkdown_in:
- text

0 comments on commit 7e8095e

Please sign in to comment.