Skip to content

Commit ff49f58

Browse files
authored
Merge pull request #27619 from github/repo-sync
Repo sync
2 parents 907ebaf + 6b4fc47 commit ff49f58

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.github/workflows/sync-codeql-cli.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ permissions:
1919
contents: write
2020
pull-requests: write
2121

22+
# **IMPORTANT:** Do not change the FREEZE environment variable set here!
23+
# This workflow runs on a recurring basis. To temporarily disable it (e.g.,
24+
# during a docs deployment freeze), add an Actions Secret to the repo settings
25+
# called `FREEZE` with a value of `true`. To re-enable Audit Logs updates, simply
26+
# delete that Secret from the repo settings. The environment variable here
27+
# will duplicate that Secret's value for later evaluation.
28+
env:
29+
FREEZE: ${{ secrets.FREEZE }}
30+
2231
# This allows a subsequently queued workflow run to interrupt previous runs
2332
concurrency:
2433
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'

.github/workflows/sync-openapi.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ permissions:
1919
contents: write
2020
pull-requests: write
2121

22+
# **IMPORTANT:** Do not change the FREEZE environment variable set here!
23+
# This workflow runs on a recurring basis. To temporarily disable it (e.g.,
24+
# during a docs deployment freeze), add an Actions Secret to the repo settings
25+
# called `FREEZE` with a value of `true`. To re-enable Audit Logs updates, simply
26+
# delete that Secret from the repo settings. The environment variable here
27+
# will duplicate that Secret's value for later evaluation.
28+
env:
29+
FREEZE: ${{ secrets.FREEZE }}
30+
2231
# This allows a subsequently queued workflow run to interrupt previous runs
2332
concurrency:
2433
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
Loading

components/ui/MarkdownContent/MarkdownContent.module.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
@import "./stylesheets/table.scss";
55

66
.markdownBody {
7-
:not(h1, h2, h3, h4, h5, h6) > a {
8-
text-decoration: underline;
9-
text-underline-offset: 25%;
7+
:not(h1, h2, h3, h4, h5, h6, [role="tablist"]) {
8+
> a {
9+
text-decoration: underline;
10+
text-underline-offset: 25%;
11+
}
1012
}
1113

1214
summary {

0 commit comments

Comments
 (0)