Skip to content

Commit c95e750

Browse files
Merge branch 'main' into repo-sync
2 parents a5d369c + 8d689fc commit c95e750

File tree

9 files changed

+60
-2
lines changed

9 files changed

+60
-2
lines changed
66.6 KB
Loading
28.1 KB
Loading
24.2 KB
Loading
56.2 KB
Loading

content/actions/guides/caching-dependencies-to-speed-up-workflows.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,16 @@ For more information, see [`actions/cache`](https://github.com/actions/cache).
5959

6060
- `key`: **Required** The key created when saving a cache and the key used to search for a cache. Can be any combination of variables, context values, static strings, and functions. Keys have a maximum length of 512 characters, and keys longer than the maximum length will cause the action to fail.
6161
- `path`: **Required** The file path on the runner to cache or restore. The path can be an absolute path or relative to the working directory.
62-
- With `v2` of the `cache` action, you can specify a single path, or multiple paths as a list. Paths can be either directories or single files, and glob patterns are supported.
62+
- Paths can be either directories or single files, and glob patterns are supported.
63+
- With `v2` of the `cache` action, you can specify a single path, or you can add multiple paths on separate lines. For example:
64+
```
65+
- name: Cache Gradle packages
66+
uses: actions/cache@v2
67+
with:
68+
path: |
69+
~/.gradle/caches
70+
~/.gradle/wrapper
71+
```
6372
- With `v1` of the `cache` action, only a single path is supported and it must be a directory. You cannot cache a single file.
6473
- `restore-keys`: **Optional** An ordered list of alternative keys to use for finding the cache if no cache hit occurred for `key`.
6574

content/codespaces/about-codespaces.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ A codespace includes everything developers need to develop for a specific reposi
2828

2929
Codespaces offers many benefits to teams by allowing for a consistent environment across your entire team, fast onboarding, and creating a secure space for development.
3030

31-
3231
### A consistent environment
3332

3433
You can create a single codespace configuration that defines the environment (or _dev container_) of every new codespace that anyone creates for your repository. Once you've made a configuration, developers don’t have to worry about installing the right tools to comment, review, or contribute. A standardized environment is already available for them as soon as they create a codespace from the repository. For more information, see "[Configuring {% data variables.product.prodname_codespaces %} for your project](/github/developing-online-with-codespaces/configuring-codespaces-for-your-project)."
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: Disabling your GitHub Sponsors account
3+
intro: 'If you no longer want to participate in {% data variables.product.prodname_sponsors %}, you can disable your {% data variables.product.prodname_sponsors %} account.'
4+
versions:
5+
free-pro-team: '*'
6+
type: how_to
7+
topics:
8+
- Open Source
9+
- Sponsors payments
10+
---
11+
12+
If you are receiving sponsorship payments, you'll need to contact GitHub Support to disable your {% data variables.product.prodname_sponsors %} account.
13+
14+
If you don't have any sponsors, then you can disable your {% data variables.product.prodname_sponsors %} account on GitHub.
15+
16+
If you decide to create a {% data variables.product.prodname_sponsors %} account again, you'll need to reapply.
17+
18+
Alternatively, you can unpublish your sponsors profile and then republish the account without reapplying again. For more information, see "[Unpublishing your {% data variables.product.prodname_sponsors %} profile](/sponsors/receiving-sponsorships-through-github-sponsors/unpublishing-your-github-sponsors-profile)."
19+
20+
{% data reusables.sponsors.navigate-to-sponsors-dashboard %}
21+
{% data reusables.sponsors.settings-tab %}
22+
1. Under "Disable GitHub Sponsors account", click **Disable account**.
23+
!["Disable your account" button](/assets/images/help/sponsors/disable-your-account-button.png)
24+
2. To confirm, click **Disable GitHub Sponsors account**.
25+
!["Disable GitHub Sponsors account" button](/assets/images/help/sponsors/disable-github-sponsors-account-dialog.png)

content/sponsors/receiving-sponsorships-through-github-sponsors/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ versions:
2020
{% link_with_intro /managing-your-payouts-from-github-sponsors %}
2121
{% link_with_intro /contacting-your-sponsors %}
2222
{% link_with_intro /tax-information-for-github-sponsors %}
23+
{% link_with_intro /disabling-your-github-sponsors-account %}
24+
{% link_with_intro /unpublishing-your-github-sponsors-profile %}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Unpublishing your GitHub Sponsors profile
3+
intro: 'If you don''t have any sponsors, you can unpublish your {% data variables.product.prodname_sponsors %} profile.'
4+
versions:
5+
free-pro-team: '*'
6+
type: how_to
7+
topics:
8+
- Open Source
9+
- Sponsors payments
10+
---
11+
12+
If you have sponsors, you'll need to contact GitHub Support to help you unpublish your {% data variables.product.prodname_sponsors %} account.
13+
14+
After your {% data variables.product.prodname_sponsors %} account is unpublished:
15+
- You'll no longer receive sponsorship payments.
16+
- You can request to re-publish your profile.
17+
18+
{% data reusables.sponsors.navigate-to-sponsors-dashboard %}
19+
{% data reusables.sponsors.settings-tab %}
20+
3. Under "Unpublish your GitHub Sponsors profile", click **Unpublish profile**.
21+
!["Unpublish profile" button](/assets/images/help/sponsors/unpublish-profile-button.png)
22+
4. To confirm, click "Unpublish GitHub Sponsors account".
23+
!["Unpublish GitHub Sponsors profile" button](/assets/images/help/sponsors/unpublish-profile-dialog.png)

0 commit comments

Comments
 (0)