-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(doc): migrate to docusaurus v3 (#3808)
* feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * feat(doc): migrate to docusaurus v3 * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * fix zoom * remove backslash from inline code * remove backslash from inline code * remove backslosh from coeblocks * remove backslosh from coeblocks * remove backslosh from coeblocks * Update poller-troubleshoot.md * Update poller-troubleshoot.md * Update poller-troubleshoot.md * Update using-packages.md * Update using-packages.md * Update using-packages.md * Update using-packages.md * Update using-packages.md * Update using-packages.md --------- Co-authored-by: cg-tw <[email protected]>
- Loading branch information
Showing
1,441 changed files
with
33,784 additions
and
23,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: clean-cache | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
clean-cache: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
||
- name: Clean cache | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
REPO=${{ github.repository }} | ||
BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge" | ||
echo "Fetching list of cache key" | ||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 ) | ||
## Setting this to not fail the workflow while deleting cache keys. | ||
set +e | ||
echo "Deleting caches..." | ||
for cacheKey in $cacheKeysForPR | ||
do | ||
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | ||
done | ||
echo "Done" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.