-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (23 loc) · 735 Bytes
/
action.yml
File metadata and controls
29 lines (23 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: "Pull Request Comment Branch"
description: "Gets the head ref and sha of a pull request comment"
author: "xt0rted"
branding:
icon: "message-square"
color: "white"
inputs:
repo_token:
description: "GITHUB_TOKEN token or a repo scoped PAT"
required: true
default: ${{ github.token }}
outputs:
base_ref:
description: "The name of the branch the pull request will merge into."
base_sha:
description: "The head sha of the branch the pull request will merge into."
head_ref:
description: "The name of the pull request branch the comment belongs to."
head_sha:
description: "The head sha of the pull request branch the comment belongs to."
runs:
using: "node20"
main: "dist/index.js"