Skip to content

Commit 6bea3fe

Browse files
authored
Merge branch 'main' into feat/add-inline-links
2 parents d0d2b46 + 6581ab5 commit 6bea3fe

File tree

464 files changed

+527756
-1826
lines changed

Some content is hidden

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

464 files changed

+527756
-1826
lines changed

.github/allowed-actions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = [
1313
'actions/stale@af4072615903a8b031f986d25b1ae3bf45ec44d4', //actions/stale@v3.0.13
1414
'crowdin/github-action@fd9429dd63d6c0f8a8cb4b93ad8076990bd6e688',
1515
'crykn/copy_folder_to_another_repo_action@abc264e1c16eb3d7b1f7763bfdb0e1699ad43120',
16+
'cschleiden/actions-linter@43fd4e08e52ed40c0e2782dc2425694388851576',
1617
'dawidd6/action-delete-branch@47743101a121ad657031e6704086271ca81b1911',
1718
'docker://chinthakagodawita/autoupdate-action:v1',
1819
'fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289',

.github/workflows/60-days-stale-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
stale:
8+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
89
runs-on: ubuntu-latest
910
steps:
1011
- uses: actions/stale@af4072615903a8b031f986d25b1ae3bf45ec44d4

.github/workflows/automerge-dependencies.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414

1515
jobs:
1616
run:
17+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
1718
runs-on: ubuntu-latest
1819
steps:
1920
- uses: tjenkinson/gh-action-auto-merge-dependency-updates@cee2ac0

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
jobs:
2121
automerge:
2222
runs-on: ubuntu-latest
23-
if: contains(github.event.pull_request.labels.*.name, 'automerge') || contains(github.event.pull_request.labels.*.name, 'autosquash')
23+
if: (contains(github.event.pull_request.labels.*.name, 'automerge') || contains(github.event.pull_request.labels.*.name, 'autosquash')) && (github.repository == 'github/docs-internal' || github.repository == 'github/docs')
2424
steps:
2525
- name: automerge
2626
uses: 'pascalgn/automerge-action@c9bd182'

.github/workflows/autoupdate-branch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- main
66
jobs:
77
autoupdate:
8+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
89
name: autoupdate
910
runs-on: ubuntu-18.04
1011
steps:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111

1212
jobs:
1313
build:
14+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
1415
runs-on: ubuntu-latest
15-
1616
steps:
1717
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
1818
- uses: github/codeql-action/init@v1

.github/workflows/pa11y.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- cron: '25 17 * * *' # once a day at 17:25 UTC / 11:50 PST
66
jobs:
77
test:
8+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
89
runs-on: ubuntu-latest
910
steps:
1011
- name: Check out repo

.github/workflows/repo-freeze-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ env:
1616

1717
jobs:
1818
check-freezer:
19+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
1920
name: Prevent merging during deployment freezes
2021
runs-on: ubuntu-latest
2122
steps:

.github/workflows/repo-sync-stalls.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
repo-sync-stalls:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- name: Check if repo sync is stalled
19+
- if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
20+
name: Check if repo sync is stalled
2021
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
2122
with:
2223
github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}

.github/workflows/repo-sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
exit 1 # prevents further steps from running
2727
2828
repo-sync:
29+
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
2930
name: Repo Sync
3031
needs: check-freezer
3132
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)