2024-08-21 01:55:45 -06:00
|
|
|
name: Issue Validator and Labeler
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened, edited]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
validate-and-label:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-11-06 03:51:27 -07:00
|
|
|
- uses: actions/checkout@v4
|
2024-08-21 01:55:45 -06:00
|
|
|
|
|
|
|
- name: Validate Issue Template and Add Labels
|
|
|
|
uses: actions/github-script@v7
|
|
|
|
with:
|
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
const script = require('./.github/scripts/validate.js')
|
|
|
|
await script({github, context})
|