-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathaction.yaml
More file actions
58 lines (44 loc) · 1.26 KB
/
Copy pathaction.yaml
File metadata and controls
58 lines (44 loc) · 1.26 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Ephemeral Access Tokens for GitHub Actions
description: GitHub Action to request temporary access tokens
author: qoomon
branding:
icon: unlock
color: blue
inputs:
owner:
description: |
Target owner e.g. octocat
Defaults to OIDC token repository owner
repositories:
description: |
Target repositories as comma separated strings
or as a YAML array string
or 'ALL' to target all repositories of inputs.owner .
Defaults to OIDC token repository, only if inputs.owner is equal to OIDC token repository owner.
Examples:
repositories: playground, shop
repositories: |
- playground
- shop
repositories: ALL
permissions:
required: true
description: |
Permissions to request as comma separated strings
or as YAML object string
Examples:
permissions: contents:write, pull-requests:write, secrets:write
permissions: |
contents: write
pull-requests: write
secrets: write
app-server:
description: |
Configuration of the app server endpoint.
outputs:
token:
description: The requested access token
runs:
using: node24
main: action/dist/main/index.js
post: action/dist/post/index.js