Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/manage-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Manage org labels
on:
workflow_dispatch:
schedule:

Copilot AI Sep 20, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'schedule' key should be indented to align with 'workflow_dispatch' at the same level under 'on'.

Suggested change
schedule:
schedule:

Copilot uses AI. Check for mistakes.
- cron: '0 9 * * *'

jobs:

Copilot AI Sep 20, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The YAML indentation is incorrect. The 'jobs' key should be at the root level (no indentation), and 'sync' should be indented under 'jobs'.

Suggested change
jobs:
jobs:

Copilot uses AI. Check for mistakes.
sync:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions-automation/manage-your-labels@v0.1.0
with:
github-token: ${{ secrets.ORG_LABEL_SYNC_TOKEN }}