mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 14:19:01 +00:00
f0775a6afa
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22 lines
467 B
YAML
22 lines
467 B
YAML
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Search for issues with missing labels
|
|
run: bash ./tools/find-issues-with-missing-labels.sh
|