Skip to content

Updates to redirects workflow #5255

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/check_for_redirects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
GITHUB_PULL_REQUEST_HEAD_SHA: ${{ github.pull_request.head.sha }}
run: |
git fetch origin main
echo "DELETED_FILES_ON_OPENED=$(git diff --name-status --diff-filter=D origin/main -- ${{ env.DIFF_DIRECTORIES }} ${{ env.GITHUB_PULL_REQUEST_HEAD_SHA }} -- ${{ env.DIFF_DIRECTORIES }} | wc -l)" >> $GITHUB_ENV
echo "DELETED_FILES_ON_OPENED=$(git diff --name-status --diff-filter=D origin/main -- ${{ env.DIFF_DIRECTORIES }} ${{ env.GITHUB_PULL_REQUEST_HEAD_SHA }} | wc -l)" >> $GITHUB_ENV
- name: Print number of deleted files
run: |
echo "Deleted file count: ${{ env.DELETED_FILES_ON_OPENED }}"
- name: Fail status check if there are deleted files
if: ${{ env.DELETED_FILES_ON_OPENED > 0 }}
Expand All @@ -42,8 +44,10 @@ jobs:
GITHUB_EVENT_AFTER: ${{ github.event.after }}
run: |
git fetch origin ${{ github.event.before }} --depth=1
echo "DELETED_FILES_ON_SYNC=$(git diff --name-status --diff-filter=D ${{ env.GITHUB_EVENT_BEFORE}} -- ${{ env.DIFF_DIRECTORIES }} ${{ env.GITHUB_EVENT_AFTER }} -- ${{ env.DIFF_DIRECTORIES }} | wc -l)" >> $GITHUB_ENV
echo "Deleted file count: ${{ env.DELETED_FILES_ON_SYNC }}"
echo "DELETED_FILES_ON_SYNC=$(git diff --name-status --diff-filter=D ${{ env.GITHUB_EVENT_BEFORE}} -- ${{ env.DIFF_DIRECTORIES }} ${{ env.GITHUB_EVENT_AFTER }} | wc -l)" >> $GITHUB_ENV
- name: Print number of deleted files
run: |
echo "Deleted file count: ${{ env.DELETED_FILES_ON_OPENED }}"
- name: Fail status check if there are deleted files
if: ${{ env.DELETED_FILES_ON_SYNC > 0 }}
run: exit 1
Expand Down