Skip to content
Open
Show file tree
Hide file tree
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
Empty file modified .github/tooling/defunct-readme.sh
100644 → 100755
Empty file.
9 changes: 9 additions & 0 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,15 @@ jobs:
- name: Set PATH
run: echo "${{ needs.init.outputs.BIN_PATH }}" >> ${GITHUB_PATH}

# Only want to check for defunct READMEs in a PR
# Since on a push, there's no 'source of truth' to compare against with `.github/tooling/defunct-readme.sh`
# Either way, this is to catch easy mistakes before merging
- name: Check READMEs
if: ${{ github.event_name == 'pull_request' }}
run: |
git fetch origin ${{ github.base_ref }}:${{ github.base_ref }}
.github/tooling/defunct-readme.sh ${{ github.base_ref }}

- name: Prepare HTML index
run: |
# Regenerating the Everything files without the deprecated modules
Expand Down
Loading