You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Fork using the command line:
32
32
### Make your update:
33
33
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).
34
34
- 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).
36
36
37
37
### Open a pull request
38
38
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
63
63
-[Starting with an issue](#starting-with-an-issue)
64
64
-[Labels](#labels)
65
65
-[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)
68
66
-[Working in the github/docs repository](#working-in-the-githubdocs-repository)
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,10 @@ As you're using the GitHub Docs, you may find something in an article that you'd
26
26
27
27
If you've found a problem, you can open an issue using a [template](https://github.com/github/docs/issues/new/choose).
28
28
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
+
29
33
#### Join us in discussions
30
34
31
35
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
Copy file name to clipboardExpand all lines: content/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -173,7 +173,7 @@ You can install a package by adding the package as a dependency to your project.
173
173
{% data reusables.package_registry.authenticate-step %}
174
174
2. Add the package dependencies to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.
175
175
176
-
Example using Grady Groovy:
176
+
Example using Gradle Groovy:
177
177
```shell
178
178
dependencies {
179
179
implementation 'com.example:package'
@@ -188,7 +188,7 @@ You can install a package by adding the package as a dependency to your project.
188
188
189
189
3. Add the maven plugin to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.
0 commit comments