Skip to content

Commit ca4645e

Browse files
authored
Merge branch 'main' into fix-table-overflow
2 parents e896f48 + eb4beeb commit ca4645e

File tree

994 files changed

+9920
-4497
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

994 files changed

+9920
-4497
lines changed

.github/workflows/check-all-english-links.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Check all English links
22

33
on:
4+
workflow_dispatch:
45
schedule:
56
- cron: "40 19 * * *" # once a day at 19:40 UTC / 11:40 PST
67

@@ -16,15 +17,15 @@ jobs:
1617
- name: npm run build
1718
run: npm run build
1819
- name: Run script
19-
run: script/check-external-links en > broken_links.md
20+
run: script/check-english-links.js > broken_links.md
2021
- name: Check if any broken links
2122
id: check
2223
run: |
23-
if [ "$(grep 'All links are good' broken_links.md)" ]; then
24+
if [ "$(grep '0 broken links found' broken_links.md)" ]; then
2425
echo ::set-output name=continue::no
2526
else
2627
echo "::set-output name=continue::yes"
27-
echo "::set-output name=title::$(grep 'found on help.github.com' broken_links.md)"
28+
echo "::set-output name=title::$(head -1 broken_links.md)"
2829
fi
2930
- if: ${{ steps.check.outputs.continue == 'yes' }}
3031
name: Create issue from file
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Repo Freeze Check
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
- ready_for_review
10+
- unlocked
11+
branches:
12+
- main
13+
14+
env:
15+
FREEZE: ${{ secrets.FREEZE }}
16+
17+
jobs:
18+
check-freezer:
19+
name: Prevent merging during deployment freezes
20+
runs-on: ubuntu-latest
21+
steps:
22+
23+
- name: Fail if repo merges are paused
24+
if: ${{ env.FREEZE == 'true' }}
25+
run: |
26+
echo 'Merges into the "main" branch on this repo are currently paused!'
27+
exit 1

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
node_modules
55
npm-debug.log
66
coverage
7-
8-
# blc: broken link checker
9-
blc_output.log
10-
blc_output_internal.log
11-
dist
7+
.linkinator
8+
broken_links.md
9+
dist
146 KB
Loading
104 KB
Loading
188 KB
Loading
21 KB
Loading
67.4 KB
Loading
34.3 KB
Loading

content/actions/guides/building-and-testing-powershell.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ product: '{% data reusables.gated-features.actions %}'
55
versions:
66
free-pro-team: '*'
77
enterprise-server: '>=2.22'
8+
authors:
9+
- potatoqualitee
810
---
911

1012
{% data reusables.actions.enterprise-beta %}

0 commit comments

Comments
 (0)