feat(uipath-agents): generate SubType metadata for bindings.json #521
Workflow file for this run
This file contains hidden or 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 Skills | |
| on: | |
| pull_request: | |
| paths: | |
| - 'skills/*/SKILL.md' | |
| - '.github/workflows/validate-skills.yml' | |
| jobs: | |
| validate-descriptions: | |
| runs-on: ubuntu-latest | |
| name: Validate skill descriptions | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check description lengths | |
| run: | | |
| FILES=$(git diff origin/${{ github.base_ref }}...HEAD --name-only --diff-filter=ACM | grep 'skills/.*/SKILL\.md$' || true) | |
| bash hooks/validate-skill-descriptions.sh $FILES |