-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yaml
32 lines (26 loc) · 780 Bytes
/
action.yaml
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
name: 'Auto Follows & Unfollows by Github Actions for Github users'
description: 'Features unfollow all non-followers of the owner and follow back those who the owner was not following.'
author: 'Huniko519'
inputs:
token:
description: 'The token used to authenticate.'
required: true
default: ${{ github.token }}
repository:
description: 'The name of the repository.'
required: true
default: ${{ github.repository }}
isReadmeUpdate:
description: 'Readme update enable status.'
required: false
default: ${{ github.isReadmeUpdate }}
safeUserList:
description: 'Lists of Safe Users.'
required: false
default: ${{ github.safeUserList }}
runs:
using: 'node20'
main: 'main.js'
branding:
icon: 'star'
color: 'yellow'