Skip to content

Commit 49e0788

Browse files
authored
Actions bug fix hour for the week of April 15, 2023 (#37144)
1 parent f119340 commit 49e0788

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ Third-party systems can be observability systems, change management systems, cod
4646

4747
{% endif %}
4848

49-
{% ifversion fpt %}
50-
{% note %}
51-
52-
**Note:** Deployment protection rules are only available in **public** repositories if you are using {% data variables.product.prodname_free_user %}, {% data variables.product.prodname_pro %}, or {% data variables.product.prodname_team %}. For access to deployment protection rules in **private** or **internal** repositories, you must use {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %}, or {% data variables.product.prodname_enterprise %}. For more information on switching your subscription, see "[AUTOTITLE](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription)."
53-
54-
{% endnote %}
55-
{% endif %}
56-
5749
### Required reviewers
5850

5951
Use required reviewers to require a specific person or team to approve workflow jobs that reference the environment. You can list up to six users or teams as reviewers. The reviewers must have at least read access to the repository. Only one of the required reviewers needs to approve the job for it to proceed.

content/actions/using-workflows/workflow-syntax-for-github-actions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,8 @@ For built-in shell keywords, we provide the following defaults that are executed
690690

691691
A `map` of the input parameters defined by the action. Each input parameter is a key/value pair. Input parameters are set as environment variables. The variable is prefixed with `INPUT_` and converted to upper case.
692692

693+
Input parameters defined for a Docker container must use `args`. For more information, see "[`jobs.<job_id>.steps[*].with.args`](#jobsjob_idstepswithargs)."
694+
693695
### Example of `jobs.<job_id>.steps[*].with`
694696

695697
Defines the three input parameters (`first_name`, `middle_name`, and `last_name`) defined by the `hello_world` action. These input variables will be accessible to the `hello-world` action as `INPUT_FIRST_NAME`, `INPUT_MIDDLE_NAME`, and `INPUT_LAST_NAME` environment variables.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1+
2+
{% ifversion fpt %}
3+
{% note %}
4+
5+
**Note:** Organization-level secrets and variables are not available to be used by private repositories for your plan. For more information on upgrading your {% data variables.product.company_short %} subscription, see "[AUTOTITLE](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription)".
6+
7+
{% endnote %}
8+
{% endif %}
9+
110
When creating a secret or variable in an organization, you can use a policy to limit access by repository. For example, you can grant access to all repositories, or limit access to only private repositories or a specified list of repositories.

0 commit comments

Comments
 (0)