Fix/refactor form types #1
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: Validate Docs Routes File | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- docs/** | |
jobs: | |
verify: | |
if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/composite/setupNode | |
# Verify that no new hubs were created without adding their metadata to _routes.yml | |
- name: Validate Docs Routes File | |
run: ./.github/scripts/createDocsRoutes.sh |