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/actions/reference/workflow-syntax-for-github-actions.md
+21-21Lines changed: 21 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -899,18 +899,18 @@ The order that you define a `matrix` matters. The first option you define will b
899
899
900
900
#### Example running with more than one version of Node.js
901
901
902
-
You can specify a matrix by supplying an array for the configuration options. For example, if the runner supports Node.js versions 6, 8, and 10, you could specify an array of those versions in the `matrix`.
902
+
You can specify a matrix by supplying an array for the configuration options. For example, if the runner supports Node.js versions 10, 12, and 14, you could specify an array of those versions in the `matrix`.
903
903
904
904
This example creates a matrix of three jobs by setting the `node` key to an array of three Node.js versions. To use the matrix, the example sets the `matrix.node` context property as the value of the `setup-node` action's input parameter `node-version`. As a result, three jobs will run, each using a different Node.js version.
905
905
906
906
{% raw %}
907
907
```yaml
908
908
strategy:
909
909
matrix:
910
-
node: [6, 8, 10]
910
+
node: [10, 12, 14]
911
911
steps:
912
912
# Configures the node version used on GitHub-hosted runners
913
-
- uses: actions/setup-node@v1
913
+
- uses: actions/setup-node@v2
914
914
with:
915
915
# The Node.js version to configure
916
916
node-version: ${{ matrix.node }}
@@ -934,9 +934,9 @@ runs-on: ${{ matrix.os }}
934
934
strategy:
935
935
matrix:
936
936
os: [ubuntu-16.04, ubuntu-18.04]
937
-
node: [6, 8, 10]
937
+
node: [10, 12, 14]
938
938
steps:
939
-
- uses: actions/setup-node@v1
939
+
- uses: actions/setup-node@v2
940
940
with:
941
941
node-version: ${{ matrix.node }}
942
942
```
@@ -948,37 +948,37 @@ steps:
948
948
949
949
#### Example including additional values into combinations
950
950
951
-
You can add additional configuration options to a build matrix job that already exists. For example, if you want to use a specific version of `npm` when the job that uses `windows-latest` and version 4 of `node` runs, you can use `include` to specify that additional option.
951
+
You can add additional configuration options to a build matrix job that already exists. For example, if you want to use a specific version of `npm` when the job that uses `windows-latest` and version 8 of `node` runs, you can use `include` to specify that additional option.
952
952
953
953
{% raw %}
954
954
```yaml
955
955
runs-on: ${{ matrix.os }}
956
956
strategy:
957
957
matrix:
958
958
os: [macos-latest, windows-latest, ubuntu-18.04]
959
-
node: [4, 6, 8, 10]
959
+
node: [8, 10, 12, 14]
960
960
include:
961
-
# includes a new variable of npm with a value of 2
961
+
# includes a new variable of npm with a value of 6
962
962
# for the matrix leg matching the os and version
963
963
- os: windows-latest
964
-
node: 4
965
-
npm: 2
964
+
node: 8
965
+
npm: 6
966
966
```
967
967
{% endraw %}
968
968
969
969
#### Example including new combinations
970
970
971
-
You can use `include` to add new jobs to a build matrix. Any unmatched include configurations are added to the matrix. For example, if you want to use `node` version 12 to build on multiple operating systems, but wanted one extra experimental job using node version 13 on Ubuntu, you can use `include` to specify that additional job.
971
+
You can use `include` to add new jobs to a build matrix. Any unmatched include configurations are added to the matrix. For example, if you want to use `node` version 14 to build on multiple operating systems, but wanted one extra experimental job using node version 15 on Ubuntu, you can use `include` to specify that additional job.
972
972
973
973
{% raw %}
974
974
```yaml
975
975
runs-on: ${{ matrix.os }}
976
976
strategy:
977
977
matrix:
978
-
node: [12]
978
+
node: [14]
979
979
os: [macos-latest, windows-latest, ubuntu-18.04]
980
980
include:
981
-
- node: 13
981
+
- node: 15
982
982
os: ubuntu-18.04
983
983
experimental: true
984
984
```
@@ -994,11 +994,11 @@ runs-on: ${{ matrix.os }}
994
994
strategy:
995
995
matrix:
996
996
os: [macos-latest, windows-latest, ubuntu-18.04]
997
-
node: [4, 6, 8, 10]
997
+
node: [8, 10, 12, 14]
998
998
exclude:
999
-
# excludes node 4 on macOS
999
+
# excludes node 8 on macOS
1000
1000
- os: macos-latest
1001
-
node: 4
1001
+
node: 8
1002
1002
```
1003
1003
{% endraw %}
1004
1004
@@ -1033,7 +1033,7 @@ Prevents a workflow run from failing when a job fails. Set to `true` to allow a
1033
1033
1034
1034
#### Example preventing a specific failing matrix job from failing a workflow run
1035
1035
1036
-
You can allow specific jobs in a job matrix to fail without failing the workflow run. For example, if you wanted to only allow an experimental job with `node` set to `13` to fail without failing the workflow run.
1036
+
You can allow specific jobs in a job matrix to fail without failing the workflow run. For example, if you wanted to only allow an experimental job with `node` set to `15` to fail without failing the workflow run.
Copy file name to clipboardExpand all lines: content/github/authenticating-to-github/reviewing-your-security-log.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
@@ -186,6 +186,7 @@ An overview of some of the most common actions that are recorded as events in th
186
186
187
187
| Action | Description
188
188
|------------------|-------------------
189
+
| `custom_amount_settings_change` | Triggered when you enable or disable custom amounts, or when you change the suggested custom amount (see "[Managing your sponsorship tiers](/github/supporting-the-open-source-community-with-github-sponsors/managing-your-sponsorship-tiers)")
189
190
| `repo_funding_links_file_action` | Triggered when you change the FUNDING file in your repository (see "[Displaying a sponsor button in your repository](/articles/displaying-a-sponsor-button-in-your-repository)")
190
191
| `sponsor_sponsorship_cancel` | Triggered when you cancel a sponsorship (see "[Downgrading a sponsorship](/articles/downgrading-a-sponsorship)")
191
192
| `sponsor_sponsorship_create` | Triggered when you sponsor an account (see "[Sponsoring an open source contributor](/github/supporting-the-open-source-community-with-github-sponsors/sponsoring-an-open-source-contributor)")
@@ -265,4 +266,3 @@ An overview of some of the most common actions that are recorded as events in th
265
266
|--------------------|---------------------
266
267
| `update` | Triggered when you set or change the status on your profile. For more information, see "[Setting a status](/articles/personalizing-your-profile/#setting-a-status)."
267
268
| `destroy` | Triggered when you clear the status on your profile.
Copy file name to clipboardExpand all lines: content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -593,6 +593,7 @@ For more information, see "[Managing the publication of {% data variables.produc
593
593
594
594
| Action | Description
595
595
|------------------|-------------------
596
+
| `custom_amount_settings_change` | Triggered when you enable or disable custom amounts, or when you change the suggested custom amount (see "[Managing your sponsorship tiers](/github/supporting-the-open-source-community-with-github-sponsors/managing-your-sponsorship-tiers)")
596
597
| `repo_funding_links_file_action` | Triggered when you change the FUNDING file in your repository (see "[Displaying a sponsor button in your repository](/articles/displaying-a-sponsor-button-in-your-repository)")
597
598
| `sponsor_sponsorship_cancel` | Triggered when you cancel a sponsorship (see "[Downgrading a sponsorship](/articles/downgrading-a-sponsorship)")
598
599
| `sponsor_sponsorship_create` | Triggered when you sponsor an account (see "[Sponsoring an open source contributor](/github/supporting-the-open-source-community-with-github-sponsors/sponsoring-an-open-source-contributor)")
Copy file name to clipboardExpand all lines: content/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization.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
@@ -23,6 +23,12 @@ topics:
23
23
24
24
Organization owners have full administrative access to the organization. {% data reusables.organizations.new-org-permissions-more-info %}
25
25
26
+
{% note %}
27
+
28
+
**Note**: As an organization owner, you can change the role of other organization members and owners. You can't change your own role.
0 commit comments