Skip to content

Commit 0abeb3c

Browse files
committed
Merge branch 'main' of github.com:github/docs-internal into toggle-images
2 parents 5f67b5d + 9923f16 commit 0abeb3c

26 files changed

Lines changed: 184 additions & 51 deletions

.github/workflows/no-response.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: No Response
99

1010
on:
1111
issue_comment:
12-
types: created
12+
types: [created]
1313

1414
schedule:
1515
# Schedule for five minutes after the hour every hour
@@ -27,4 +27,6 @@ jobs:
2727
to our request for more information from the original author. With only the
2828
information that is currently in the issue, we don't have enough information
2929
to take action. Please reach out if you have or find the answers we need so
30-
that we can investigate further. See [this blog post on bug reports and the importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/) for more information about the kind of information that may be helpful.
30+
that we can investigate further. See [this blog post on bug reports and the
31+
importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/)
32+
for more information about the kind of information that may be helpful.

.github/workflows/site-policy-sync.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: site-policy-sync
22

3-
# **What it does**: Updates our site policy docs when changes happen to site policy.
4-
# **Why we have it**: We want up to date site policy docs.
5-
# **Who does it impact**: Site policy team.
3+
# **What it does**: Updates our site-policy repo when changes happen to site policy docs.
4+
# **Why we have it**: We want keep site-policy repo up to date.
5+
# **Who does it impact**: Site-policy team.
66

77
# Controls when the action will run.
88
on:
@@ -30,6 +30,10 @@ jobs:
3030
steps:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3232
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
33+
# Sets commit message
34+
- name: custom message
35+
run: |
36+
echo "MESSAGE=${{github.event.pull_request.title}}" >> $GITHUB_ENV
3337
3438
# Pushes to other repo
3539
- name: Push folder to another repository
@@ -42,6 +46,6 @@ jobs:
4246
destination_branch: 'main'
4347
destination_branch_create: 'repo-sync'
4448
destination_folder: 'Policies'
45-
user_email: 'pcihon@users.noreply.github.com'
46-
user_name: 'pcihon'
47-
commit_msg: 'Automatic sync from GitHub Docs.'
49+
user_email: 'site-policy-bot@users.noreply.github.com'
50+
user_name: 'site-policy-bot'
51+
commit_msg: '${{ env.MESSAGE }}'
46.7 KB
Loading
50.4 KB
Loading
39.5 KB
Loading
108 KB
Loading

content/actions/reference/context-and-expression-syntax-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Returns `true` if `searchString` ends with `searchValue`. This function is not c
323323

324324
`format( string, replaceValue0, replaceValue1, ..., replaceValueN)`
325325

326-
Replaces values in the `string`, with the variable `replaceValueN`. Variables in the `string` are specified using the `{N}` syntax, where `N` is an integer. You must specify at least one `replaceValue` and `string`. There is no maximum for the number of variables (`replaceValueN`) you can use. Escape curly braces useing double braces.
326+
Replaces values in the `string`, with the variable `replaceValueN`. Variables in the `string` are specified using the `{N}` syntax, where `N` is an integer. You must specify at least one `replaceValue` and `string`. There is no maximum for the number of variables (`replaceValueN`) you can use. Escape curly braces using double braces.
327327

328328
##### Example
329329

content/admin/github-actions/about-using-actions-in-your-enterprise.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ topics:
2222

2323
### Official actions bundled with your enterprise instance
2424

25-
Most official {% data variables.product.prodname_dotcom %}-authored actions are automatically bundled with {% data variables.product.product_name %}, and are captured at a point in time from {% data variables.product.prodname_marketplace %}. When {% data variables.product.product_name %} is updated, the bundled official actions are also updated.
25+
Most official {% data variables.product.prodname_dotcom %}-authored actions are automatically bundled with {% data variables.product.product_name %}, and are captured at a point in time from {% data variables.product.prodname_marketplace %}.
2626

2727
The bundled official actions include `actions/checkout`, `actions/upload-artifact`, `actions/download-artifact`, `actions/labeler`, and various `actions/setup-` actions, among others. To see all the official actions included on your enterprise instance, browse to the `actions` organization on your instance: <code>https://<em>HOSTNAME</em>/actions</code>.
2828

29-
Each action is a repository in the `actions` organization, and each action repository includes the necessary tags, branches, and commit SHAs that your workflows can use to reference the action.
29+
Each action is a repository in the `actions` organization, and each action repository includes the necessary tags, branches, and commit SHAs that your workflows can use to reference the action. For information on how to update the bundled official actions, see "[Using the latest version of the official bundled actions](/admin/github-actions/using-the-latest-version-of-the-official-bundled-actions)."
3030

3131
{% note %}
3232

content/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ topics:
1313

1414
{% data reusables.actions.enterprise-beta %}
1515
{% data reusables.actions.enterprise-github-hosted-runners %}
16+
{% data reusables.actions.enterprise-github-connect-warning %}
1617
{% data reusables.actions.ae-beta %}
1718

1819
By default, {% data variables.product.prodname_actions %} workflows on {% data variables.product.product_name %} cannot use actions directly from {% data variables.product.prodname_dotcom_the_website %} or [{% data variables.product.prodname_marketplace %}](https://github.com/marketplace?type=actions).

content/github/setting-up-and-managing-your-github-profile/personalizing-your-profile.md

Lines changed: 72 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,89 @@ When you participate in certain programs, {% data variables.product.prodname_dot
122122

123123
| Badge | Program | Description |
124124
| --- | --- | --- |
125-
| {% octicon "north-star" aria-label="The North Star icon" %} | **{% data variables.product.prodname_arctic_vault %} Contributor** | If you authored any commit(s) on the default branch of a repository that was archived in the 2020 Arctic Vault program, you'll get an {% data variables.product.prodname_arctic_vault %} Contributor badge on your profile. For more information on the program, see [{% data variables.product.prodname_archive %}](https://archiveprogram.github.com). |
126-
| {% octicon "cpu" aria-label="The Developer Program icon" %} | **Developer Program Member** | If you're a registered member of the GitHub Developer Program, building an app with the GitHub API, you'll get a Developer Program Member badge on your profile. For more information on the GitHub Developer Program, see [GitHub Developer](/program/). |
127-
| {% octicon "heart-fill" aria-label="The GitHub Sponsor icon" %} | **GitHub Sponsor** | If you sponsored an open source contributor through {% data variables.product.prodname_sponsors %} you'll get a GitHub Sponsor badge on your profile. For more information, see "[Sponsoring open source contributors](/github/supporting-the-open-source-community-with-github-sponsors/sponsoring-open-source-contributors)." |
125+
| ![Mars 2020 Helicopter Contributor badge icon](/assets/images/help/profile/badge-mars-2020-small.png) | **Mars 2020 Helicopter Contributor** | If you authored any commit(s) on the default branch up to the relevant version of an open source library used in the Mars 2020 Helicopter Mission, you'll get a Mars 2020 Helicopter Contributor badge on your profile. Hovering over the badge shows you several of the repositories you contributed to that were used in the mission. For the full list of repositories that will qualify you for the badge, see "[List of qualifying repositories for Mars 2020 Helicopter Contributor badge](/github/setting-up-and-managing-your-github-profile/personalizing-your-profile#list-of-qualifying-repositories-for-mars-2020-helicopter-contributor-badge)." |
126+
| ![Arctic Code Vault Contributor badge icon](/assets/images/help/profile/badge-arctic-code-vault-small.png) | **{% data variables.product.prodname_arctic_vault %} Contributor** | If you authored any commit(s) on the default branch of a repository that was archived in the 2020 Arctic Vault program, you'll get an {% data variables.product.prodname_arctic_vault %} Contributor badge on your profile. Hovering over the badge shows you several of the repositories you contributed to that were part of the program. For more information on the program, see [{% data variables.product.prodname_archive %}](https://archiveprogram.github.com). |
127+
| ![{% data variables.product.prodname_dotcom %} Sponsor badge icon](/assets/images/help/profile/badge-sponsors-small.png) | **{% data variables.product.prodname_dotcom %} Sponsor** | If you sponsored an open source contributor through {% data variables.product.prodname_sponsors %} you'll get a {% data variables.product.prodname_dotcom %} Sponsor badge on your profile. Clicking the badge takes you to the **Sponsoring** tab of your profile. For more information, see "[Sponsoring open source contributors](/github/supporting-the-open-source-community-with-github-sponsors/sponsoring-open-source-contributors)." |
128+
| {% octicon "cpu" aria-label="The Developer Program icon" %} | **Developer Program Member** | If you're a registered member of the {% data variables.product.prodname_dotcom %} Developer Program, building an app with the {% data variables.product.prodname_dotcom %} API, you'll get a Developer Program Member badge on your profile. For more information on the {% data variables.product.prodname_dotcom %} Developer Program, see [GitHub Developer](/program/). |
128129
| {% octicon "star-fill" aria-label="The star icon" %} | **Pro** | If you use {% data variables.product.prodname_pro %} you'll get a PRO badge on your profile. For more information about {% data variables.product.prodname_pro %}, see "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products#github-pro)." |
129130

130131
### Disabling badges on your profile
131132

132-
You can disable some of the badges for {% data variables.product.prodname_dotcom %} programs you're participating in, including the PRO and {% data variables.product.prodname_arctic_vault %} badges.
133+
You can disable some of the badges for {% data variables.product.prodname_dotcom %} programs you're participating in, including the PRO, {% data variables.product.prodname_arctic_vault %} and Mars 2020 Helicopter Contributor badges.
133134

134135
{% data reusables.user_settings.access_settings %}
135136
2. Under "Profile settings", deselect the badge you want you disable.
136-
![Checkbox to no longer display a badge on your profile](/assets/images/help/profile/display-pro-badge-checkbox.png)
137+
![Checkbox to no longer display a badge on your profile](/assets/images/help/profile/profile-badge-settings.png)
137138
3. Click **Update preferences**.
138139

139140
{% endif %}
140141

142+
### List of qualifying repositories for Mars 2020 Helicopter Contributor badge
143+
144+
If you authored any commit(s) on the default branch of one or more of the repositories below, up to the specified version, you'll receive the Mars 2020 Helicopter Contributor badge on your profile. The list was built based on the information received from NASA's Jet Propulsion Laboratory.
145+
146+
| {% data variables.product.prodname_dotcom %} Repository | Version |
147+
|---|---|
148+
| [torvalds/linux](https://github.com/torvalds/linux) | 3.4 |
149+
| [nasa/fprime](https://github.com/nasa/fprime) | 1.3 |
150+
| [python/cpython](https://github.com/python/cpython) | 3.9.2 |
151+
| [boto/boto3](https://github.com/boto/boto3) | 1.17.17 |
152+
| [boto/botocore](https://github.com/boto/botocore) | 1.20.11 |
153+
| [certifi/python-certifi](https://github.com/certifi/python-certifi) | 2020.12.5 |
154+
| [chardet/chardet](https://github.com/chardet/chardet) | 4.0.0 |
155+
| [matplotlib/cycler](https://github.com/matplotlib/cycler) | 0.10.0 |
156+
| [elastic/elasticsearch-py](https://github.com/elastic/elasticsearch-py) | 6.8.1 |
157+
| [ianare/exif-py](https://github.com/ianare/exif-py) | 2.3.2 |
158+
| [kjd/idna](https://github.com/kjd/idna) | 2.10 |
159+
| [jmespath/jmespath.py](https://github.com/jmespath/jmespath.py) | 0.10.0 |
160+
| [nucleic/kiwi](https://github.com/nucleic/kiwi) | 1.3.1 |
161+
| [matplotlib/matplotlib](https://github.com/matplotlib/matplotlib) | 3.3.4 |
162+
| [numpy/numpy](https://github.com/numpy/numpy) | 1.20.1 |
163+
| [opencv/opencv-python](https://github.com/opencv/opencv-python) | 4.5.1.48 |
164+
| [python-pillow/Pillow](https://github.com/python-pillow/Pillow) | 8.1.0 |
165+
| [pycurl/pycurl](https://github.com/pycurl/pycurl) | 7.43.0.6 |
166+
| [pyparsing/pyparsing](https://github.com/pyparsing/pyparsing) | 2.4.7 |
167+
| [pyserial/pyserial](https://github.com/pyserial/pyserial) | 3.5 |
168+
| [dateutil/dateutil](https://github.com/dateutil/dateutil) | 2.8.1 |
169+
| [yaml/pyyaml](https://github.com/yaml/pyyaml) | 5.4.1 |
170+
| [psf/requests](https://github.com/psf/requests) | 2.25.1 |
171+
| [boto/s3transfer](https://github.com/boto/s3transfer) | 0.3.4 |
172+
| [enthought/scimath](https://github.com/enthought/scimath) | 4.2.0 |
173+
| [scipy/scipy](https://github.com/scipy/scipy) | 1.6.1 |
174+
| [benjaminp/six](https://github.com/benjaminp/six) | 1.15.0 |
175+
| [enthought/traits](https://github.com/enthought/traits) | 6.2.0 |
176+
| [urllib3/urllib3](https://github.com/urllib3/urllib3) | 1.26.3 |
177+
| [python-attrs/attrs](https://github.com/python-attrs/attrs) | 19.3.0 |
178+
| [CheetahTemplate3/cheetah3](https://github.com/CheetahTemplate3/cheetah3/) | 3.2.4 |
179+
| [pallets/click](https://github.com/pallets/click) | 7.0 |
180+
| [pallets/flask](https://github.com/pallets/flask) | 1.1.1 |
181+
| [flask-restful/flask-restful](https://github.com/flask-restful/flask-restful) | 0.3.7 |
182+
| [pytest-dev/iniconfig](https://github.com/pytest-dev/iniconfig) | 1.0.0 |
183+
| [pallets/itsdangerous](https://github.com/pallets/itsdangerous) | 1.1.0 |
184+
| [pallets/jinja](https://github.com/pallets/jinja) | 2.10.3 |
185+
| [lxml/lxml](https://github.com/lxml/lxml) | 4.4.1 |
186+
| [Python-Markdown/markdown](https://github.com/Python-Markdown/markdown) | 3.1.1 |
187+
| [pallets/markupsafe](https://github.com/pallets/markupsafe) | 1.1.1 |
188+
| [pypa/packaging](https://github.com/pypa/packaging) | 19.2 |
189+
| [pexpect/pexpect](https://github.com/pexpect/pexpect) | 4.7.0 |
190+
| [pytest-dev/pluggy](https://github.com/pytest-dev/pluggy) | 0.13.0 |
191+
| [pexpect/ptyprocess](https://github.com/pexpect/ptyprocess) | 0.6.0 |
192+
| [pytest-dev/py](https://github.com/pytest-dev/py) | 1.8.0 |
193+
| [pyparsing/pyparsing](https://github.com/pyparsing/pyparsing) | 2.4.5 |
194+
| [pytest-dev/pytest](https://github.com/pytest-dev/pytest) | 5.3.0 |
195+
| [stub42/pytz](https://github.com/stub42/pytz) | 2019.3 |
196+
| [uiri/toml](https://github.com/uiri/toml) | 0.10.0 |
197+
| [pallets/werkzeug](https://github.com/pallets/werkzeug) | 0.16.0 |
198+
| [dmnfarrell/tkintertable](https://github.com/dmnfarrell/tkintertable) | 1.2 |
199+
| [wxWidgets/wxPython-Classic](https://github.com/wxWidgets/wxPython-Classic) | 2.9.1.1 |
200+
| [opencv/opencv](https://github.com/opencv/opencv) | 4.5.1 |
201+
| [curl/curl](https://github.com/curl/curl) | 7.19.0 |
202+
| [madler/zlib](https://github.com/madler/zlib) | 1.2.11 |
203+
| [apache/lucene](https://github.com/apache/lucene) | 7.7.3 |
204+
| [yaml/libyaml](https://github.com/yaml/libyaml) | 0.2.5 |
205+
| [elastic/elasticsearch](https://github.com/elastic/elasticsearch) | 6.8.1 |
206+
| [nucleic/cppy](https://github.com/nucleic/cppy) | 1.1.0 |
207+
141208
### Further reading
142209

143210
- "[About your profile](/articles/about-your-profile)"

0 commit comments

Comments
 (0)