You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "The permissions to request e.g. issues:read,secrets:write,packages:read. Defaults to all available permissions"
121
124
required: false
122
-
organization:
123
-
description: The GitHub Organization to get the application installation for, if not specified will use the current repository instead
125
+
org:
126
+
description: The GitHub Organisation to get the application installation for, if not specified will use the current repository instead. This is not normally needed as the workflow will be running in the context of a repository / org.
127
+
required: false
128
+
owner:
129
+
description: The GitHub Owner to get the application installation for, if not specified will use the current repository instead. This is not normally needed as the workflow will be running in the context of a repository / org.
130
+
required: false
131
+
repo:
132
+
description: The GitHub Repository to get the application installation for, if not specified will use the current repository instead (owner must also be specified). This is not normally needed as the workflow will be running in the context of a repository / org.
124
133
required: false
125
134
github_api_base_url:
126
-
description: The GitHub API base URL to use, no needed it working within the same GitHub instance as the workflow as it will get picked up from the environment
135
+
description: The GitHub API base URL to use, no needed it working within the same GitHub instance as the workflow as it will get picked up from the environment. This not usually needed and is mainly for testing purposes.
136
+
required: false
137
+
token_lifetime:
138
+
description: The lifetime of the token in seconds, defaults to 600 seconds (10 minutes).
127
139
required: false
128
140
```
129
141
@@ -133,12 +145,12 @@ inputs:
133
145
outputs:
134
146
token:
135
147
description: A valid token representing the Application that can be used to access what the Application has been scoped to access.
148
+
expires_at:
149
+
description: The date and time when the token will expire (UTC).
136
150
permissions_requested:
137
-
description: The permissions that were requested for the token, if not specified will be your default permissions.
151
+
description: The permissions that were requested for the token.
138
152
permissions_granted:
139
153
description: The permissions that were granted for the token.
140
-
expires_at:
141
-
description: The date and time that the token will expire in UTC.
Copy file name to clipboardExpand all lines: action.yml
+19-3Lines changed: 19 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,28 @@ inputs:
20
20
description: "The permissions to request e.g. issues:read,secrets:write,packages:read. Defaults to all available permissions"
21
21
required: false
22
22
23
-
organization:
24
-
description: The GitHub Organization to get the application installation for, if not specified will use the current repository instead
23
+
org:
24
+
description: The GitHub Organisation to get the application installation for, if not specified will use the current repository instead. This is not normally needed as the workflow will be running in the context of a repository / org.
25
+
required: false
26
+
27
+
owner:
28
+
description: The GitHub Owner to get the application installation for, if not specified will use the current repository instead. This is not normally needed as the workflow will be running in the context of a repository / org.
29
+
required: false
30
+
31
+
repo:
32
+
description: The GitHub Repository to get the application installation for, if not specified will use the current repository instead (owner must also be specified). This is not normally needed as the workflow will be running in the context of a repository / org.
25
33
required: false
26
34
27
35
github_api_base_url:
28
-
description: The GitHub API base URL to use, no needed it working within the same GitHub instance as the workflow as it will get picked up from the environment
36
+
description: The GitHub API base URL to use, no needed it working within the same GitHub instance as the workflow as it will get picked up from the environment. This not usually needed and is mainly for testing purposes.
37
+
required: false
38
+
39
+
token_lifetime:
40
+
description: The lifetime of the token in seconds, defaults to 600 (10 minutes).
0 commit comments