Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/.sync-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
with:
persist-credentials: false
- name: 🔄 Sync labels
uses: devantler-tech/actions/sync-github-labels@6a2f24aa5a859f7d0de66f9d0bde52254adba641 # v7.1.3
uses: devantler-tech/actions/sync-github-labels@061b345a7351b0caf23055caea63ccd08b75e20e # v8.0.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if the sync-github-labels action still exists at v8.0.0 in devantler-tech/actions
gh api repos/devantler-tech/actions/contents/sync-github-labels/action.yml?ref=v8.0.0 2>&1 | head -30
gh release view v8.0.0 --repo devantler-tech/actions 2>&1 | head -60

Repository: devantler-tech/reusable-workflows

Length of output: 1092


sync-github-labels pin breaks on v8.0.0
.github/workflows/.sync-labels.yaml:27 still uses devantler-tech/actions/sync-github-labels@v8.0.0, but that release removes the composite action. Migrate this step to the declarative IssueLabels setup.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/.sync-labels.yaml at line 27, The sync-github-labels
action pin is broken because the v8.0.0 release no longer provides the composite
action used by the workflow. Update the labels workflow to stop using the
`sync-github-labels` action in the job step and migrate the configuration to the
declarative `IssueLabels` setup instead, keeping the workflow’s label sync
behavior aligned with the new API.

Loading