@liblaf/actions 1.4.1 → 1.6.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 +31 -0
- package/dist/review/dist/index.js +52 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
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 pull requests.
|
|
8
|
+
|
|
9
|
+
inputs:
|
|
10
|
+
app:
|
|
11
|
+
description: Only review pull requests authored by this GitHub App.
|
|
12
|
+
required: false
|
|
13
|
+
label:
|
|
14
|
+
description: Only review pull requests with these labels.
|
|
15
|
+
required: false
|
|
16
|
+
default: automerge
|
|
17
|
+
list-token:
|
|
18
|
+
description: Token used to list and inspect candidate pull requests.
|
|
19
|
+
required: false
|
|
20
|
+
default: ${{ github.token }}
|
|
21
|
+
pull:
|
|
22
|
+
description: Pull request number, URL, or branch to review instead of listing pull requests.
|
|
23
|
+
required: false
|
|
24
|
+
review-token:
|
|
25
|
+
description: Token used to submit approving reviews for eligible pull requests.
|
|
26
|
+
required: false
|
|
27
|
+
default: ${{ github.token }}
|
|
28
|
+
|
|
29
|
+
runs:
|
|
30
|
+
using: node24
|
|
31
|
+
main: ./dist/index.js
|