Skip to content

docs: add a new github action that automatically adds a docs preview #17282

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
89ac7c1
new docs preview action
EdwardAngert Apr 7, 2025
ec2b3bd
enhance: implement GitHub Actions best practices for docs-preview-lin…
EdwardAngert Apr 7, 2025
57cec51
feat: add docs-analysis composite action
EdwardAngert Apr 7, 2025
e26a937
enhance: improve docs-analysis composite action with best practices
EdwardAngert Apr 7, 2025
a4d3d94
feat: integrate docs-analysis with docs-preview-link workflow
EdwardAngert Apr 7, 2025
ea54314
feat: enhance docs-analysis action security and error handling
EdwardAngert Apr 7, 2025
2e5d26d
feat: enhance docs-ci workflow with security and metrics
EdwardAngert Apr 7, 2025
69515e6
fix: resolve YAML formatting issues in docs-analysis action
EdwardAngert Apr 7, 2025
13d9d7d
chore: add analyze_docs.py script for docs analysis
EdwardAngert Apr 7, 2025
7d62132
fix: resolve duplicate step ID in docs-analysis action
EdwardAngert Apr 7, 2025
7e150f2
fix: relax branch name validation in docs-analysis action
EdwardAngert Apr 7, 2025
e5fa379
fix: resolve regex syntax error in branch validation
EdwardAngert Apr 7, 2025
721f4f0
attempt to fix yaml issue
EdwardAngert Apr 7, 2025
b0f4315
attempt to fix yaml issue
EdwardAngert Apr 7, 2025
6b4f62c
fix: use proper variable expansion in Bash here-docs for Markdown links
EdwardAngert Apr 7, 2025
5b7ef4f
Merge branch 'main' into docs-preview-action
EdwardAngert Apr 7, 2025
d8ec639
fix: force GitHub Actions to use latest version of docs-analysis action
EdwardAngert Apr 8, 2025
4c93df1
fix: simplify docs-preview workflow (#17292)
EdwardAngert Apr 8, 2025
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
Prev Previous commit
Next Next commit
fix: force GitHub Actions to use latest version of docs-analysis action
Uses SHA-pinned reference to force GitHub Actions to fetch the latest version of the custom action, preventing cache issues.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
EdwardAngert and claude committed Apr 8, 2025
commit d8ec63939923e5c46e468f50114d85d26d5acef7
3 changes: 2 additions & 1 deletion .github/workflows/docs-preview-link.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,8 @@ jobs:
- name: Analyze documentation changes
id: docs-analysis
if: steps.pr_info.outputs.skip != 'true'
uses: ./.github/actions/docs-analysis
# Force GitHub Actions to update cache by using the full path with @ syntax
uses: ./.github/actions/docs-analysis@${{ github.sha }}
with:
docs-path: "${{ env.DOCS_PRIMARY_PATH }}"
pr-ref: "${{ steps.pr_info.outputs.branch_name }}"
Expand Down
Loading