Skip to content

Commit 87acc1a

Browse files
authored
Merge branch 'main' into patch-2
2 parents ae50a3e + 78e18ef commit 87acc1a

File tree

79 files changed

+598
-1157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+598
-1157
lines changed

.github/ISSUE_TEMPLATE/improve-existing-docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: Improve existing docs
3-
about: Make a suggestion to improve our existing documentation.
2+
name: Improve existing content
3+
about: Make a suggestion to improve the content in an existing article.
44
title: ''
55
labels:
66
- content

.github/ISSUE_TEMPLATE/improve-the-site.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Improve the docs.github.com site
3-
about: Make a suggestions or report a problem on the docs.github.com website.
3+
about: Make a suggestion or report a problem about the technical implementation of docs.github.com.
44
title: ''
55
labels: engineering
66
assignees: ''
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Block JavaScript Change
2+
3+
# **What it does**: Blocks JavaScript file changes.
4+
# **Why we have it**: We need to freeze JavaScript file changes in order to upgrade from CommonJS to ESM.
5+
# **Who does it impact**: Engineers.
6+
7+
on:
8+
pull_request_target:
9+
paths:
10+
- '**.js'
11+
12+
jobs:
13+
block:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Fail
17+
run: |
18+
echo 'JavaScript files are frozen currently. Ask in Slack for help.'
19+
exit 1
-17 KB
Loading
-734 Bytes
Loading

content/actions/guides/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ includeGuides:
7373
- /actions/guides/moving-assigned-issues-on-project-boards
7474
- /actions/guides/removing-a-label-when-a-card-is-added-to-a-project-board-column
7575
- /actions/guides/managing-github-actions-with-github-cli
76+
- /code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions
77+
- /code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot
7678
children:
7779
- /about-continuous-integration
7880
- /setting-up-continuous-integration-using-workflow-templates

content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ shortTitle: Manage access groups
2121
{% ifversion fpt %}
2222
{% note %}
2323

24-
**Note:** All organizations have a single default self-hosted runner group. Creating and managing additional self-hosted runner groups is only available to enterprise accounts, and for organizations owned by an enterprise account.
24+
**Note:** All organizations have a single default self-hosted runner group. Only enterprise accounts and organizations owned by enterprise accounts can create and manage additional self-hosted runner groups.
2525

2626
{% endnote %}
2727
{% endif %}

content/actions/managing-workflow-runs/adding-a-workflow-status-badge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ shortTitle: Add a status badge
1717

1818
You reference the workflow by the name of your workflow file.
1919

20-
```
21-
https://github.com/<OWNER>/<REPOSITORY>/actions/workflows/<WORKFLOW_FILE>/badge.svg
20+
```markdown
21+
![example workflow](https://github.com/<OWNER>/<REPOSITORY>/actions/workflows/<WORKFLOW_FILE>/badge.svg)
2222
```
2323
## Using the workflow file name
2424

content/actions/managing-workflow-runs/manually-running-a-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To run a workflow manually, the workflow must be configured to run on the `workf
3131
![actions select workflow](/assets/images/actions-select-workflow.png)
3232
1. Above the list of workflow runs, select **Run workflow**.
3333
![actions workflow dispatch](/assets/images/actions-workflow-dispatch.png)
34-
1. Select the branch where the workflow will run and type the input parameters used by the workflow. Click **Run workflow**.
34+
1. Use the **Branch** dropdown to select the workflow's branch, and type the input parameters. Click **Run workflow**.
3535
![actions manually run workflow](/assets/images/actions-manually-run-workflow.png)
3636

3737
{% endwebui %}

content/actions/reference/workflow-syntax-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ You can use special characters in path, branch, and tag filters.
13201320

13211321
- `*`: Matches zero or more characters, but does not match the `/` character. For example, `Octo*` matches `Octocat`.
13221322
- `**`: Matches zero or more of any character.
1323-
- `?`: Matches zero or one single character. For example, `Octoc?t` matches `Octocat`.
1323+
- `?`: Matches zero or one of the preceding character.
13241324
- `+`: Matches one or more of the preceding character.
13251325
- `[]` Matches one character listed in the brackets or included in ranges. Ranges can only include `a-z`, `A-Z`, and `0-9`. For example, the range`[0-9a-z]` matches any digit or lowercase letter. For example, `[CB]at` matches `Cat` or `Bat` and `[1-2]00` matches `100` and `200`.
13261326
- `!`: At the start of a pattern makes it negate previous positive patterns. It has no special meaning if not the first character.

0 commit comments

Comments
 (0)