forked from xt0rted/pull-request-comment-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (27 loc) · 938 Bytes
/
action.yml
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
30
31
32
33
name: "Pull Request Comment Branch (Fork)"
description: "Gets the head ref and sha of a pull request comment"
author: "radashi-org"
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."
head_owner:
description: "The owner of the pull request branch the comment belongs to."
head_repo:
description: "The repository of the pull request branch the comment belongs to."
runs:
using: "node16"
main: "dist/index.js"