-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (28 loc) · 687 Bytes
/
action.yml
File metadata and controls
31 lines (28 loc) · 687 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
30
31
name: 'Update Secret Action'
description: 'A GitHub Action to update a secret in a repository'
author: 'Punit K'
branding:
icon: 'shield'
color: 'blue'
inputs:
repository_owner:
description: 'The owner of the repository'
required: true
repository_name:
description: 'The name of the repository'
required: true
secret_name:
description: 'The name of the secret to update'
required: true
new_secret_value:
description: 'The new value for the secret'
required: true
github_token:
description: 'GitHub token with repo access'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
permissions:
contents: write
actions: read