Skip to content

Commit

Permalink
Remove pally scan
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-linaro committed Oct 10, 2023
1 parent 6fb41b6 commit 633275c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
pull_request_target:
branches: [ master ]

# Cancel in-progress jobs or runs for the current pull request
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true

jobs:
process-pull-request:
runs-on: self-hosted
steps:
- name: Cancel previous runs
uses: n1hility/cancel-previous-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Fetch git repository
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -45,10 +45,10 @@ jobs:
- name: Check routing rules
run: /srv/github-action-scripts/test-routing-rules.sh

- name: Run Pa11y scan
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CheckSite
repo: linaro-its/pa11y-ci-container
token: ${{ secrets.BUILD_REPO_TOKEN }}
inputs: '{ "uri": "${{ env.SITE_URL }}" }'
# - name: Run Pa11y scan
# uses: benc-uk/workflow-dispatch@v1
# with:
# workflow: CheckSite
# repo: linaro-its/pa11y-ci-container
# token: ${{ secrets.BUILD_REPO_TOKEN }}
# inputs: '{ "uri": "${{ env.SITE_URL }}" }'
26 changes: 13 additions & 13 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
branches: [ master ]
workflow_dispatch:

# Cancel in-progress jobs or runs for the current workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
process-push:
runs-on: self-hosted
steps:
- name: Cancel previous runs
uses: n1hility/cancel-previous-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Fetch git repository
uses: actions/checkout@v3
with:
Expand All @@ -25,7 +25,7 @@ jobs:
- run: env

- name: Directory push/pop
uses: linaro-its/directory-push-and-pop@v2.4
uses: linaro-its/directory-push-and-pop@v3.0
with:
cacheDirectory: /srv/site-builds
namedDirectory: ${{ env.SITE_URL }}
Expand Down Expand Up @@ -60,10 +60,10 @@ jobs:
- name: Invalidate CloudFront cache
run: /srv/github-action-scripts/invalidate-cloudfront.sh

- name: Run Pa11y scan
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CheckSite
repo: linaro-its/pa11y-ci-container
token: ${{ secrets.BUILD_REPO_TOKEN }}
inputs: '{ "uri": "${{ env.SITE_URL }}" }'
# - name: Run Pa11y scan
# uses: benc-uk/workflow-dispatch@v1
# with:
# workflow: CheckSite
# repo: linaro-its/pa11y-ci-container
# token: ${{ secrets.BUILD_REPO_TOKEN }}
# inputs: '{ "uri": "${{ env.SITE_URL }}" }'

0 comments on commit 633275c

Please sign in to comment.