mirror of
https://github.com/esphome/esphome.git
synced 2026-06-24 18:06:34 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
631 B
YAML
28 lines
631 B
YAML
name: CI - GitHub Scripts
|
|
|
|
on:
|
|
push:
|
|
branches: [dev, beta, release]
|
|
paths:
|
|
- ".github/scripts/**"
|
|
- ".github/workflows/ci-github-scripts.yml"
|
|
pull_request:
|
|
paths:
|
|
- ".github/scripts/**"
|
|
- ".github/workflows/ci-github-scripts.yml"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-auto-label-pr:
|
|
name: Test auto-label-pr scripts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code from GitHub
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
|
|
- name: Run tests
|
|
working-directory: .github/scripts/auto-label-pr
|
|
run: npm test
|