Skip to content

Commit 30c7bc7

Browse files
authored
Merge branch 'master' into use-full-relative-paths
2 parents 8d7a936 + d369fd3 commit 30c7bc7

13 files changed

+888
-1065
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v2
1616
with:
1717
node-version: "12.x"
18+
cache: npm
1819
- run: npm ci
1920
- run: npm run build
2021
- run: npx semantic-release

.github/workflows/test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ jobs:
1717
- 12
1818
- 14
1919
- 16
20-
name: Node ${{ matrix.node }}
20+
name: Node ${{ matrix.node }}
2121
steps:
2222
- uses: actions/checkout@v2
2323
- uses: actions/setup-node@v2
2424
with:
2525
node-version: ${{ matrix.node }}
26+
cache: npm
2627
- run: npm ci
2728
- run: npm test
2829

@@ -34,5 +35,7 @@ jobs:
3435
steps:
3536
- uses: actions/checkout@v2
3637
- uses: actions/setup-node@v2
38+
with:
39+
cache: npm
3740
- run: npm ci
38-
- run: "npm run validate:ts"
41+
- run: "npm run validate:ts"

.github/workflows/update-prettier.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
- uses: actions/setup-node@v2
1212
with:
1313
version: 12
14+
cache: npm
1415
- run: npm ci
1516
- run: "npm run lint:fix"
1617
- uses: gr2m/[email protected]

.github/workflows/update.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
13+
with:
14+
cache: npm
1315
- run: npm ci
1416
- uses: gr2m/await-npm-package-version-action@v1
1517
with:

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ If there are actions for a webhook, events are emitted for both, the webhook nam
646646
| [`deploy_key`](https://developer.github.com/v3/activity/events/types/#deploykeyevent) | `created`<br>`deleted` |
647647
| [`deployment`](https://developer.github.com/v3/activity/events/types/#deploymentevent) | `created` |
648648
| [`deployment_status`](https://developer.github.com/v3/activity/events/types/#deploymentstatusevent) | `created` |
649-
| [`discussion`](https://developer.github.com/v3/activity/events/types/#discussionevent) | `answered`<br>`category_changed`<br>`created`<br>`deleted`<br>`edited`<br>`locked`<br>`pinned`<br>`transferred`<br>`unanswered`<br>`unlocked`<br>`unpinned` |
649+
| [`discussion`](https://developer.github.com/v3/activity/events/types/#discussionevent) | `answered`<br>`category_changed`<br>`created`<br>`deleted`<br>`edited`<br>`labeled`<br>`locked`<br>`pinned`<br>`transferred`<br>`unanswered`<br>`unlabeled`<br>`unlocked`<br>`unpinned` |
650650
| [`discussion_comment`](https://developer.github.com/v3/activity/events/types/#discussioncommentevent) | `created`<br>`deleted`<br>`edited` |
651651
| [`fork`](https://developer.github.com/v3/activity/events/types/#forkevent) | |
652652
| [`github_app_authorization`](https://developer.github.com/v3/activity/events/types/#githubappauthorizationevent) | `revoked` |
@@ -688,6 +688,7 @@ If there are actions for a webhook, events are emitted for both, the webhook nam
688688
| [`team_add`](https://developer.github.com/v3/activity/events/types/#teamaddevent) | |
689689
| [`watch`](https://developer.github.com/v3/activity/events/types/#watchevent) | `started` |
690690
| [`workflow_dispatch`](https://developer.github.com/v3/activity/events/types/#workflowdispatchevent) | |
691+
| [`workflow_job`](https://developer.github.com/v3/activity/events/types/#workflowjobevent) | `completed`<br>`started` |
691692
| [`workflow_run`](https://developer.github.com/v3/activity/events/types/#workflowrunevent) | `completed`<br>`requested` |
692693

693694
<!-- /autogenerated via scripts/generate-types.ts -->

0 commit comments

Comments
 (0)