Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion .github/workflows/deploy-to-hugging-face.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v7
- uses: JacobLinCool/huggingface-sync@60850d5a74ea004fc094f77c960c2c8bd9a0f9d1 # v1.3.1
# Pin to the tip of the action's `v1` branch, which is where its build
# output lives. Its release tags point at source commits, and `dist/` is
# gitignored there, so a tag digest resolves to a tree with no
# `dist/index.js` and the step fails before it runs.
- uses: JacobLinCool/huggingface-sync@48eb49940149dc1015d8294621cb203635fe9ff3 # v1 branch, 2026-05-12
with:
github: ${{ secrets.GITHUB_TOKEN }}
user: ${{ vars.HF_SPACE_OWNER }}
Expand Down
10 changes: 9 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>felladrin/.github:renovate-config"]
"extends": ["local>felladrin/.github:renovate-config"],
"packageRules": [
{
"description": "Keep the pin on the action's v1 branch tip. Its release tags point at source commits where dist/ is gitignored, so any tag digest resolves to a tree with no dist/index.js and the deploy fails. Renovate cannot resolve a branch tip, so it has nothing correct to offer here.",
"matchManagers": ["github-actions"],
"matchDepNames": ["JacobLinCool/huggingface-sync"],
"enabled": false
}
]
}