File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
fern/products/docs/pages/customization Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+ permissions :
2+ contents : read
3+ pull-requests : write
4+ statuses : write
5+
6+ name : PR Quality Check
7+ on :
8+ pull_request :
9+ paths :
10+ - ' **.mdx'
11+ - ' **.md'
12+ - ' .vale/**'
13+ - ' .vale.ini'
14+ - ' !**/changelog/**'
15+ jobs :
16+ quality-gate :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v5
20+ - name : Quality Analysis
21+ id : analysis
22+ uses : markupai/content-guardian-action@v1
23+ with :
24+ markup_ai_api_key : ${{ secrets.MARKUP_AI_API_KEY }}
25+ github_token : ${{ secrets.GITHUB_TOKEN }}
26+ dialect : " american_english"
27+ style-guide : " microsoft"
28+ # tone is optional
29+ tone : " technical"
30+
31+ - name : Check Quality Score
32+ run : |
33+ results='${{ steps.analysis.outputs.results }}'
34+ # Add your quality threshold logic here
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: Collecting feedback and suggestions from users
33slug : user-feedback
44---
55
6- Fern offers a variety of ways to track feedback and suggested improvements from users.
6+ Fern offers a variety of ways to track feedback and suggested improvements from users. test edit
77
88## On-page feedback
99By default, every Markdown page of your docs contains a feedback component at the bottom of the page:
You can’t perform that action at this time.
0 commit comments