@liblaf/actions 1.4.1 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/review/action.yaml +25 -0
- package/dist/review/dist/index.js +51 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# yaml-language-server: $schema=https://www.schemastore.org/github-action.json
|
|
2
|
+
|
|
3
|
+
name: Review
|
|
4
|
+
|
|
5
|
+
author: liblaf
|
|
6
|
+
|
|
7
|
+
description: Approve eligible bot-authored automerge pull requests.
|
|
8
|
+
|
|
9
|
+
inputs:
|
|
10
|
+
actor:
|
|
11
|
+
description: GitHub login used to detect existing approvals by this reviewer.
|
|
12
|
+
required: false
|
|
13
|
+
default: ${{ github.repository_owner }}
|
|
14
|
+
list-token:
|
|
15
|
+
description: Token used to list and inspect pull requests.
|
|
16
|
+
required: false
|
|
17
|
+
default: ${{ github.token }}
|
|
18
|
+
review-token:
|
|
19
|
+
description: Token used to submit approving reviews.
|
|
20
|
+
required: false
|
|
21
|
+
default: ${{ github.token }}
|
|
22
|
+
|
|
23
|
+
runs:
|
|
24
|
+
using: node24
|
|
25
|
+
main: ./dist/index.js
|