🚧 WIP - Update meta descriptions tag rule #6341
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check-Images | |
# Controls when the action will run. | |
on: | |
# # Triggers the workflow on pull request events but only for the main branch | |
pull_request: | |
branches: [ main ] | |
# TODO: Trigger temporarily disabled as per https://github.com/SSWConsulting/SSW.Rules/issues/1065 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# This workflow contains a single job called "build" | |
check-images: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- uses: actions/setup-node@v4 | |
- name: Get changed files | |
id: get_changed | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
echo "changed=$(git diff --name-only $(git merge-base origin/main HEAD) HEAD)" | paste -sd "," - >> $GITHUB_ENV | |
- name: run find-unreferenced-images script | |
run: | | |
cd scripts/find-unreferenced-images | |
npm install | |
node find-unreferenced-images.js '${{ env.changed }}' |