Skip to content

Commit f9258ad

Browse files
authored
Merge branch 'main' into patch-13
2 parents 654857a + cf710b7 commit f9258ad

File tree

47 files changed

+1380
-1364
lines changed

Some content is hidden

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

47 files changed

+1380
-1364
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,15 @@
294294
"contributions": [
295295
"doc"
296296
]
297+
},
298+
{
299+
"login": "tjenkinson",
300+
"name": "Tom Jenkinson",
301+
"avatar_url": "https://avatars0.githubusercontent.com/u/3259993?v=4",
302+
"profile": "https://tjenkinson.me",
303+
"contributions": [
304+
"code"
305+
]
297306
}
298307
],
299308
"contributorsPerLine": 7,

.github/allowed-actions.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = [
88
'actions/cache@v2',
99
'actions/checkout@v2',
1010
'actions/[email protected]',
11+
'actions/[email protected]',
1112
'actions/github-script@v2',
1213
'actions/github-script@v3',
1314
'actions/labeler@v2',
@@ -25,8 +26,11 @@ module.exports = [
2526
'pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a',
2627
'peter-evans/create-issue-from-file@v2',
2728
'peter-evans/create-pull-request@v2',
29+
'rachmari/[email protected]',
30+
'rachmari/[email protected]',
2831
'repo-sync/github-sync@v2',
2932
'repo-sync/pull-request@v2',
3033
'rtCamp/action-slack-notify@master',
31-
32-
]
34+
35+
'tjenkinson/gh-action-auto-merge-dependency-updates@cee2ac0'
36+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto Merge Dependency Updates
2+
3+
on:
4+
- pull_request
5+
- pull_request_review
6+
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: tjenkinson/gh-action-auto-merge-dependency-updates@cee2ac0
12+
with:
13+
repo-token: ${{ secrets.GITHUB_TOKEN }}
14+
allowed-actors: dependabot[bot]

.github/workflows/merged-notification.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ jobs:
1313
github.issues.createComment({
1414
...context.repo,
1515
issue_number: context.payload.pull_request.number,
16-
body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. To add your ✨ contribution to the README.md, create a new comment in this PR with:
17-
18-
\`\`\`
19-
@all-contributors please add @${context.payload.pull_request.user.login} for docs
20-
\`\`\`
21-
22-
If you want to, you can use the [emoji key](https://allcontributors.org/docs/en/emoji-key) to replace docs with a different contribution type.`
16+
body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours.
17+
18+
If you haven't already, you can add yourself to [the list of contributors](https://github.com/github/docs#contributors-) by creating a new comment in this PR using [these instructions](https://allcontributors.org/docs/en/bot/usage#commands). Thanks again! :sparkles:`
2319
})

.github/workflows/test-windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111

1212
jobs:
1313
lint:
14-
if: github.repository == 'github/docs-internal'
1514
runs-on: windows-latest
1615
steps:
1716
- name: Check out repo

LICENSE

Lines changed: 386 additions & 21 deletions
Large diffs are not rendered by default.

LICENSE-CODE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 GitHub
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## GitHub Docs <!-- omit in toc -->
22

3-
This repository contains the documentation website code and Markdown source files for docs.github.com.
3+
This repository contains the documentation website code and Markdown source files for [docs.github.com](https://docs.github.com).
44

55
GitHub's Docs team works on pre-production content in a private repo that regularly syncs with this public repo.
66

@@ -65,9 +65,9 @@ In addition to the README you're reading right now, this repo includes other REA
6565

6666
## License
6767

68-
The GitHub product documentation in the assets, content, and data folders are licensed under a [CC-BY license](content/LICENSE).
68+
The GitHub product documentation in the assets, content, and data folders are licensed under a [CC-BY license](LICENSE).
6969

70-
All other code in this repository is licensed under a [MIT license](LICENSE).
70+
All other code in this repository is licensed under a [MIT license](LICENSE-CODE).
7171

7272
When using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).
7373

@@ -117,6 +117,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
117117
</tr>
118118
<tr>
119119
<td align="center"><a href="https://github.com/BenJam"><img src="https://avatars2.githubusercontent.com/u/158833?v=4" width="64px;" alt=""/><br /><sub><b>Benjamin Nickolls</b></sub></a><br /><a href="https://github.com/github/docs/commits?author=BenJam" title="Documentation">📖</a></td>
120+
<td align="center"><a href="https://tjenkinson.me"><img src="https://avatars0.githubusercontent.com/u/3259993?v=4" width="64px;" alt=""/><br /><sub><b>Tom Jenkinson</b></sub></a><br /><a href="https://github.com/github/docs/commits?author=tjenkinson" title="Code">💻</a></td>
120121
</tr>
121122
</table>
122123

0 commit comments

Comments
 (0)