Skip to content

Commit ae2548e

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 4abcabb + 546978e commit ae2548e

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,15 @@
295295
"doc"
296296
]
297297
},
298+
{
299+
"login": "jeffmcaffer",
300+
"name": "Jeff McAffer",
301+
"avatar_url": "https://avatars2.githubusercontent.com/u/10070956?v=4",
302+
"profile": "https://mcaffer.com",
303+
"contributions": [
304+
"doc"
305+
]
306+
},
298307
{
299308
"login": "tjenkinson",
300309
"name": "Tom Jenkinson",

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Fork using the command line:
3232
### Make your update:
3333
Make your changes to the file(s) you'd like to update. Here are some tips and tricks for [using the docs codebase](#working-in-the-githubdocs-repository).
3434
- Are you making changes to the application code? You'll need **Node.js v14** to run the site locally. See [contributing/development.md](contributing/development.md).
35-
- Are you contributing to markdown? We use [GitHub Markdown](contributing/content-markup-reference).
35+
- Are you contributing to markdown? We use [GitHub Markdown](contributing/content-markup-reference.md).
3636

3737
### Open a pull request
3838
When you're done making changes and you'd like to propose them for review, use the [pull request template](#pull-request-template) to open your PR (pull request).
@@ -63,8 +63,6 @@ Now that you're a part of the GitHub Docs community, you can keep participating
6363
- [Starting with an issue](#starting-with-an-issue)
6464
- [Labels](#labels)
6565
- [Opening a pull request](#opening-a-pull-request)
66-
- [Fork using GitHub Desktop](#fork-using-github-desktop)
67-
- [Fork using the command line](#fork-using-the-command-line)
6866
- [Working in the github/docs repository](#working-in-the-githubdocs-repository)
6967
- [Resolving merge conflicts](#resolving-merge-conflicts)
7068
- [In the GitHub user interface](#in-the-github-user-interface)
@@ -156,7 +154,7 @@ You should always review your own PR first.
156154
For content changes, make sure that you:
157155
- [ ] Confirm that the changes address every part of the content strategy plan from your issue (if there are differences, explain them).
158156
- [ ] Review the content for technical accuracy.
159-
- [ ] Review the entire pull request using the [localization checklist](contribution/localization-checklist.md).
157+
- [ ] Review the entire pull request using the [localization checklist](contributing/localization-checklist.md).
160158
- [ ] Copy-edit the changes for grammar, spelling, and adherence to the style guide.
161159
- [ ] Check new or updated Liquid statements to confirm that versioning is correct.
162160
- [ ] Check that all of your changes render correctly in staging. Remember, that lists and tables can be tricky.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ As you're using the GitHub Docs, you may find something in an article that you'd
2626

2727
If you've found a problem, you can open an issue using a [template](https://github.com/github/docs/issues/new/choose).
2828

29+
#### Solve an issue
30+
31+
If you have a solution to one of the open issues, you will need to fork the repository and submit a PR using the [template](https://github.com/github/docs/blob/main/CONTRIBUTING.md#pull-request-template) that is visible automatically in the pull request body. For more details about this process, please check out [Getting Started with Contributing](/CONTRIBUTING.md).
32+
2933
#### Join us in discussions
3034

3135
We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in [discussions](https://github.com/github/docs/discussions).
@@ -113,6 +117,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
113117
</tr>
114118
<tr>
115119
<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://mcaffer.com"><img src="https://avatars2.githubusercontent.com/u/10070956?v=4" width="64px;" alt=""/><br /><sub><b>Jeff McAffer</b></sub></a><br /><a href="https://github.com/github/docs/commits?author=jeffmcaffer" title="Documentation">📖</a></td>
116121
<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>
117122
</tr>
118123
</table>

content/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ You can install a package by adding the package as a dependency to your project.
173173
{% data reusables.package_registry.authenticate-step %}
174174
2. Add the package dependencies to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.
175175

176-
Example using Grady Groovy:
176+
Example using Gradle Groovy:
177177
```shell
178178
dependencies {
179179
implementation 'com.example:package'
@@ -188,7 +188,7 @@ You can install a package by adding the package as a dependency to your project.
188188

189189
3. Add the maven plugin to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.
190190

191-
Example using Grady Groovy:
191+
Example using Gradle Groovy:
192192
```shell
193193
plugins {
194194
id 'maven'

0 commit comments

Comments
 (0)