aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/find-issues-with-missing-labels.yml
blob: 631c98b67b88f633c27e43c5b50bb7d1a9ab408a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'Find issues with missing labels'

on:
  schedule:
    # Run every Sunday at midnight
    - cron: '0 0 * * 0'

jobs:
  check-unlabeled-issues:
    runs-on: ubuntu-latest

    permissions:
      issues: write

    env:
      GH_TOKEN: ${{ github.token }}

    steps:
      - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

      - name: Search for issues with missing labels
        run: bash ./tools/find-issues-with-missing-labels.sh