ci(renovate): ignore internal Forgejo workflow reference alex/.profile #15

Merged
alex merged 1 commit from pi/fix-renovate-warning into master 2026-07-01 12:42:19 +00:00

Summary

Fixes the Renovate warning on the dependency dashboard (#14):

⚠️ Renovate failed to look up the following dependencies: Failed to look up github-digest package alex/.profile: no-result. Files affected: .forgejo/workflows/pi.yml

Cause

.forgejo/workflows/pi.yml references a reusable workflow from alex/.profile, which lives on Forgejo, not GitHub. Renovate's github-actions manager resolves reusable workflow references via its github-digest datasource (i.e. GitHub), so the lookup fails with no-result.

Fix

Add a packageRules entry in renovate.json that disables the github-actions manager for the alex/.profile package, so Renovate stops trying (and failing) to resolve this internal reference. The reference is still kept in the workflow file itself — only the Renovate lookup is suppressed.

"packageRules": [
  {
    "matchManagers": ["github-actions"],
    "matchPackageNames": ["alex/.profile"],
    "enabled": false
  }
]
## Summary Fixes the Renovate warning on the dependency dashboard (#14): > ⚠️ Renovate failed to look up the following dependencies: `Failed to look up github-digest package alex/.profile: no-result`. Files affected: `.forgejo/workflows/pi.yml` ## Cause `.forgejo/workflows/pi.yml` references a reusable workflow from `alex/.profile`, which lives on **Forgejo**, not GitHub. Renovate's `github-actions` manager resolves reusable workflow references via its `github-digest` datasource (i.e. GitHub), so the lookup fails with `no-result`. ## Fix Add a `packageRules` entry in `renovate.json` that disables the `github-actions` manager for the `alex/.profile` package, so Renovate stops trying (and failing) to resolve this internal reference. The reference is still kept in the workflow file itself — only the Renovate lookup is suppressed. ```json "packageRules": [ { "matchManagers": ["github-actions"], "matchPackageNames": ["alex/.profile"], "enabled": false } ] ```
Fixes the Renovate dependency dashboard warning:
  Failed to look up github-digest package alex/.profile: no-result

The .forgejo/workflows/pi.yml references a reusable workflow from
alex/.profile, which lives on Forgejo, not GitHub. Renovate's
github-actions manager resolves reusable workflows against GitHub,
so the lookup fails. Disable the manager for this package via a
packageRules entry in renovate.json.
alex merged commit 33b81ef9e5 into master 2026-07-01 12:42:19 +00:00
alex deleted branch pi/fix-renovate-warning 2026-07-01 12:42:19 +00:00
Sign in to join this conversation.
No reviewers
No labels
dependencies
No milestone
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
alex/pi-shared!15
No description provided.