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: content/billing/managing-your-license-for-github-enterprise/about-licenses-for-github-enterprise.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,12 @@ To ensure the same user isn't consuming more than one license for multiple enter
34
34
35
35
In order to use a {% data variables.product.prodname_ghe_server %} instance, you must upload a license file that {% data variables.product.company_short %} provides when you purchase, renew, or add user licenses to {% data variables.product.prodname_enterprise %}.
36
36
37
+
{% data variables.product.prodname_ghe_cloud %} customers can use Azure DevOps without additional per user charges. Access is available to customers using Microsoft Entra and users logging in with the same credentials in {% data variables.product.github %} and Azure DevOps.
38
+
39
+
There is no action required; {% data variables.product.prodname_enterprise %} users will be detected automatically when they log in to Azure DevOps. See [User and permissions management](https://learn.microsoft.com/en-us/azure/devops/organizations/accounts/faq-user-and-permissions-management?view=azure-devops#github-enterprise) in the Microsoft Learn documentation.
40
+
41
+
Access is not yet available in [new data residency regions](https://github.blog/engineering/engineering-principles/github-enterprise-cloud-with-data-residency/) but will be coming in the future.
42
+
37
43
## About synchronization of license usage for {% data variables.product.prodname_enterprise %}
38
44
39
45
{% data reusables.enterprise-licensing.about-license-sync %} For more information, see [AUTOTITLE](/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud).
Copy file name to clipboardExpand all lines: content/code-security/secret-scanning/copilot-secret-scanning/responsible-ai-generic-secrets.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ redirect_from:
29
29
30
30
{% data variables.product.prodname_GH_secret_protection %} users can already receive {% data variables.secret-scanning.alerts %} for partner or custom patterns found in their source code, but unstructured secrets are not easily discoverable. {% data variables.secret-scanning.copilot-secret-scanning %} uses large language models (LLMs) to identify this type of secret.
31
31
32
-
When a password is detected, an alert is displayed in the "Experimental" list of {% data variables.product.prodname_secret_scanning %} alerts (under the **Security** tab of the repository, organization, or enterprise), so that maintainers and security managers can review the alert and, where necessary, remove the credential or implement a fix.
32
+
When a password is detected, an alert is displayed in the "Generic" list of {% data variables.product.prodname_secret_scanning %} alerts (under the **Security** tab of the repository, organization, or enterprise), so that maintainers and security managers can review the alert and, where necessary, remove the credential or implement a fix.
33
33
34
34
{% data reusables.rai.secret-scanning.generic-secret-detection-policy-note %} The feature must then be enabled for repositories and organizations.
Copy file name to clipboardExpand all lines: content/get-started/learning-to-code/reusing-other-peoples-code-in-your-projects.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ When enabled, {% data variables.product.prodname_dependabot_alerts %} are automa
156
156
157
157
Turn {% data variables.product.prodname_dependabot_alerts %} on for your repository now. Click the **Security** tab for your project's {% data variables.product.github %} repository. Next to {% data variables.product.prodname_dependabot_alerts %}, click **Enable {% data variables.product.prodname_dependabot_alerts %}**. You can access {% data variables.product.prodname_dependabot_alerts %} from the **{% data variables.product.prodname_dependabot %}** tab of the sidebar.
158
158
159
-

159
+

Copy file name to clipboardExpand all lines: content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md
+5-13Lines changed: 5 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,14 +48,6 @@ For more information about authenticating in a {% data variables.product.prodnam
48
48
1. Generate a private key for your app. Store the contents of the resulting file as a secret in your repository or organization. (Store the entire contents of the file, including `-----BEGIN RSA PRIVATE KEY-----` and `-----END RSA PRIVATE KEY-----`.) In the following workflow, replace `APP_PEM` with the name of the secret. For more information, see [AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/managing-private-keys-for-github-apps). For more information about storing secrets, see [AUTOTITLE](/actions/security-guides/encrypted-secrets).
49
49
1. In the following workflow, replace `YOUR_ORGANIZATION` with the name of your organization. For example, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. To find the project number, look at the project URL. For example, `https://github.com/orgs/octo-org/projects/5` has a project number of 5. In order for this specific example to work, your project must also have a "Date posted" date field.
50
50
51
-
{% ifversion ghes < 3.12 %}
52
-
53
-
> [!NOTE]
54
-
> * {% data reusables.actions.actions-not-certified-by-github %}
55
-
> * {% data reusables.actions.actions-use-sha-pinning %}
56
-
57
-
{% endif %}
58
-
59
51
```yaml annotate copy
60
52
#
61
53
name: Add PR to project
@@ -68,17 +60,17 @@ jobs:
68
60
track_pr:
69
61
runs-on: ubuntu-latest
70
62
steps:
71
-
# Uses the {% ifversion ghes < 3.12 %}[tibdex/github-app-token](https://github.com/tibdex/github-app-token){% else %}[actions/create-github-app-token](https://github.com/marketplace/actions/create-github-app-token){% endif %} action to generate an installation access token for your app from the app ID and private key. The installation access token is accessed later in the workflow as `{% raw %}${{ steps.generate-token.outputs.token }}{% endraw %}`.
63
+
# Uses the [actions/create-github-app-token](https://github.com/marketplace/actions/create-github-app-token) action to generate an installation access token for your app from the app ID and private key. The installation access token is accessed later in the workflow as `{% raw %}${{ steps.generate-token.outputs.token }}{% endraw %}`.
72
64
#
73
65
# Replace `APP_ID` with the name of the configuration variable that contains your app ID.
74
66
#
75
67
# Replace `APP_PEM` with the name of the secret that contains your app private key.
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
82
74
# Sets environment variables for this step.
83
75
#
84
76
# Replace `YOUR_ORGANIZATION` with the name of your organization. For example, `octo-org`.
@@ -255,7 +247,7 @@ jobs:
255
247
# - To get the ID of an option called `Octoteam` for the `Team` single select field, add `echo 'OCTOTEAM_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Team") |.options[] | select(.name=="Octoteam") |.id' project_data.json) >> $GITHUB_ENV`.
256
248
#
257
249
# **Note:** This workflow assumes that you have a project with a single select field called "Status" that includes an option called "Todo" and a date field called "Date posted". You must modify this section to match the fields that are present in your table.
Copy file name to clipboardExpand all lines: content/rest/quickstart.md
+9-24Lines changed: 9 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,11 +68,6 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
68
68
1. Add a step to generate a token, and use that token instead of `GITHUB_TOKEN`. Note that this token will expire after 60 minutes. {% ifversion fpt or ghec %}For example:{% else %}In the following example, replace `HOSTNAME` with the name of {% data variables.location.product_location %}. Replace `REPO-OWNER` with the name of the account that owns the repository. Replace `REPO-NAME` with the name of the repository.{% endif %}
69
69
70
70
```yaml copy
71
-
{% ifversion ghes < 3.12 %}
72
-
{% data reusables.actions.actions-not-certified-by-github-comment %}
73
-
74
-
{% data reusables.actions.actions-use-sha-pinning-comment %}
75
-
{% endif %}
76
71
on:
77
72
workflow_dispatch:
78
73
jobs:
@@ -81,10 +76,10 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
244
234
245
235
- name: Run script
246
236
run: |
@@ -323,11 +313,6 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
323
313
1. Add a step to generate a token, and use that token instead of `GITHUB_TOKEN`. Note that this token will expire after 60 minutes. {% ifversion fpt or ghec %}For example:{% else %}In the following example, replace `HOSTNAME` with the name of {% data variables.location.product_location %}. Replace `REPO-OWNER` with the name of the account that owns the repository. Replace `REPO-NAME` with the name of the repository.{% endif %}
324
314
325
315
```yaml copy
326
-
{% ifversion ghes < 3.12 %}
327
-
{% data reusables.actions.actions-not-certified-by-github-comment %}
328
-
329
-
{% data reusables.actions.actions-use-sha-pinning-comment %}
330
-
{% endif %}
331
316
on:
332
317
workflow_dispatch:
333
318
jobs:
@@ -336,10 +321,10 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
Copy file name to clipboardExpand all lines: content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ topics:
22
22
23
23
{% data reusables.search.you-can-search-globally %}
24
24
25
-
* To search globally across all of {% data variables.product.github %}, type what you're looking for into the search field at the top of any page, and choose "Search all of {% data variables.product.prodname_dotcom %}"{% ifversion fpt or ghec or ghes < 3.12 %} in the search dropdown menu{% endif %}.
25
+
* To search globally across all of {% data variables.product.github %}, type what you're looking for into the search field at the top of any page, and choose "Search all of {% data variables.product.prodname_dotcom %}"{% ifversion fpt or ghec or ghes > 3.12 %} in the search dropdown menu{% endif %}.
26
26
* To search within a particular repository or organization, navigate to the repository or organization page, type what you're looking for into the search field at the top of the page, and press **Enter**.
27
27
28
28
{% ifversion code-search-upgrade %}You can also use suggestions and completions in the search bar to quickly find what you need.
Copy file name to clipboardExpand all lines: content/site-policy/privacy-policies/github-general-privacy-statement.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Personal Data is collected from you directly, automatically from your device, an
60
60
* Essential Cookies and Similar Tracking Technologies: We use cookies and similar technologies to provide essential functionality like storing settings and recognizing you while using our Services.
61
61
* Non-essential Cookies: Depending on your jurisdiction, we may use online analytics products that use cookies to help us analyze how de-identified users use our Services and to enhance your experience when you use the Services. We may also employ third-party Cookies to gather data for interest-based advertising. In some jurisdictions, we only use non-essential cookies after obtaining your consent. See [this](#what-are-your-cookie-choices-and-controls) section for more details and control options.
62
62
* Email Marketing Interactions: Our emails may have web beacons that offer information on your device type, email client, email reception, opens, and link clicks.
63
-
* Geolocation Information: Depending on the Service's functionality, we collect regional geolocation data
63
+
* Geolocation Information: Depending on the Service's functionality, we collect regional geolocation data.
64
64
* Service Usage Information: We collect data about your interactions with the Services, such as IP address, device information, session details, date and time of requests, device type and ID, operating system and application version, information related to your contributions to repositories, and performance of specific features or Services.
65
65
* Website Usage Data: We automatically log data about your Website interactions, including the referring site, date and time of visit, pages viewed, and links clicked.
1. Click the tab that corresponds to the location of the repository you want to clone. In this example, we click on the URL tab.
2
2
3
-

3
+

0 commit comments