Skip to content

Commit bb92426

Browse files
authored
Merge branch 'main' into codespaces-devcontainer-update
2 parents 2e5ee29 + 99a4d42 commit bb92426

1,016 files changed

Lines changed: 69657 additions & 2141008 deletions

File tree

Some content is hidden

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

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Thanks again!
1414

1515
Closes [issue link]
1616

17-
<!--
17+
<!--
1818
- If there's an existing issue for your change, please link to it.
1919
- If there's _not_ an existing issue, please open one first to make it more likely that this update will be accepted: https://github.com/github/docs/issues/new/choose. -->
2020

@@ -24,8 +24,8 @@ Closes [issue link]
2424

2525
### Check off the following:
2626

27-
- [ ] I have reviewed my changes in staging (look for the latest deployment event in your pull request's timeline, then click **View deployment**).
28-
- [ ] For content changes, I have completed the [self-review checklist](https://github.com/github/docs/blob/main/contributing/self-review.md#self-review).
27+
- [ ] I have reviewed my changes in staging (look for "Automatically generated comment" and click **Modified** to view your latest changes).
28+
- [ ] For content changes, I have completed the [self-review checklist](https://github.com/github/docs/blob/main/CONTRIBUTING.md#self-review).
2929

3030
### Writer impact (This section is for GitHub staff members only):
3131

.github/actions-scripts/enterprise-server-issue-templates/deprecation-issue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,8 @@ You may need to include the changes in step 6 to get tests to pass.
7070
- [ ] Debug any test failures or unexpected results.
7171
- [ ] When the PR is approved, merge it in to complete the deprecation. This can be merged independently from step 5.
7272
73+
## Step 7: Deprecate the OpenAPI description in `github/github`
74+
75+
- [ ] In `github/github`, edit the release's config file in `app/api/description/config/releases/`, and change `deprecated: false` to `deprecated: true`.
76+
- [ ] Open a new PR, and get the required code owner approvals. A docs-content team member can approve it for the docs team.
77+
- [ ] When the PR is approved, merge the `github/github` PR.

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: npm
44
directory: '/'
55
schedule:
6-
interval: weekly
6+
interval: monthly
77
open-pull-requests-limit: 20 # default is 5
88

99
- package-ecosystem: 'github-actions'

.github/workflows/staging-build-pr.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@ jobs:
9696
- name: Set npm script for Heroku build to noop
9797
run: npm set-script heroku-postbuild "echo 'Application was pre-built!'"
9898

99+
- name: Delete heavy things we won't need deployed
100+
run: |
101+
# Non-WIP translations we don't support yet.
102+
rm -fr translations/de* translations/ru* translations/ko* translations/ru*
103+
104+
# Not needed to run after having been built.
105+
rm -fr .next/cache
106+
99107
- name: Create an archive
100108
run: |
101109
tar -c --file=app.tar \
@@ -116,11 +124,15 @@ jobs:
116124
app.json \
117125
Procfile
118126
127+
ls -lh app.tar
128+
zstd -q app.tar -o app.tar.zst
129+
ls -lh app.tar.zst
130+
119131
# Upload only the files needed to run this application.
120132
# We are not willing to trust the rest (e.g. script/) for the remainder
121133
# of the deployment process.
122134
- name: Upload build artifact
123135
uses: actions/upload-artifact@27121b0bdffd731efa15d66772be8dc71245d074
124136
with:
125137
name: pr_build
126-
path: app.tar
138+
path: app.tar.zst

.github/workflows/staging-deploy-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ jobs:
325325

326326
- name: Extract user-changes to temp directory
327327
run: |
328+
zstd -d -q $RUNNER_TEMP/app.tar.zst -o $RUNNER_TEMP/app.tar
328329
mkdir $RUNNER_TEMP/app
329330
tar -x --file=$RUNNER_TEMP/app.tar -C "$RUNNER_TEMP/app/"
330331

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ coverage/
1515
blc_output.log
1616
blc_output_internal.log
1717
broken_links.md
18+
lib/redirects/.redirects-cache_*.json

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If you spot a problem with the docs, [search if an issue already exists](https:/
3232

3333
#### Solve an issue
3434

35-
Scan through our [existing issues](https://github.com/github/docs/issues) to find one that interests you. You can narrow down the search using `labels` as filters. See [Labels](/contributing/how-to-use-labels.md) for more information.
35+
Scan through our [existing issues](https://github.com/github/docs/issues) to find one that interests you. You can narrow down the search using `labels` as filters. See [Labels](/contributing/how-to-use-labels.md) for more information. As a general rule, we don’t assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix.
3636

3737
### Make Changes
3838

136 KB
Loading
6.83 KB
Loading
66.2 KB
Loading

0 commit comments

Comments
 (0)