Compare commits

..

3 Commits

Author SHA1 Message Date
doe1080
8001ff4349
[ie] _resolve_nuxt_array: Handle Pinia skipHydrate (#16447)
Ref: https://pinia.vuejs.org/api/pinia/functions/skipHydrate.html

Authored by: doe1080
2026-04-07 15:34:46 +00:00
bashonly
9f0fc9a633
[ci] Fix update wiki workflow (#16448)
Fix 40ffb79d499e6b37682fddbe6affec20186a3d86

Authored by: bashonly
2026-04-07 11:20:49 +00:00
bashonly
40ffb79d49
[ci] Update wiki via this repository (#16446)
Authored by: bashonly
2026-04-07 10:12:17 +00:00
2 changed files with 33 additions and 0 deletions

32
.github/workflows/wiki.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Update wiki
on:
schedule:
- cron: '22 22 * * *'
workflow_dispatch:
permissions: {}
concurrency:
group: wiki
cancel-in-progress: true
jobs:
update_wiki:
name: Update wiki
if: github.ref == 'refs/heads/master' && github.repository == 'yt-dlp/yt-dlp'
permissions:
contents: write # Needed to git-push to the wiki
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: yt-dlp/yt-dlp-wiki
ref: master
fetch-depth: 0
persist-credentials: true # Needed to git-push to the wiki
- name: Push to wiki
run: |
git remote add upstream https://github.com/yt-dlp/yt-dlp.wiki.git
git fetch upstream
git push --force upstream master

View File

@ -1890,6 +1890,7 @@ class InfoExtractor:
'ShallowReactive': indirect_reviver,
'Ref': indirect_reviver,
'Reactive': indirect_reviver,
'skipHydrate': indirect_reviver,
})
while True: