Skip to content
Draft
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
7 changes: 4 additions & 3 deletions .github/workflows/htmlvalidator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: HTML Check

on:
pull_request:
paths:
- '**.htm*'
branches:
- master
Comment on lines -5 to +6
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The workflow is currently only executed when htm/html files are changed. Which is generally fine, but not when I need to check what still needs to be migrated. This will be reverted again once all files have been migrated.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for being persistent on this thankless job!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kudos to the janitors of the world who keep the infrastructure taken for granted working better than ever. 👼


jobs:
build:
Expand All @@ -14,4 +14,5 @@ jobs:
uses: Cyb3r-Jak3/[email protected]
with:
root: /github/workspace/eclipse.platform.common/bundles
blacklist: about.html notices.html
blacklist: about.html notices.html
extra: --match *.html --match *.htm
Loading