-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (28 loc) · 819 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
name: Debugging with Oh My Zsh
description: 'Debug your GitHub Actions Environment interactively by using SSH and Oh My Zsh'
author: 'Bruno Krebs'
branding:
icon: 'terminal'
color: 'black'
inputs:
GITHUB_TOKEN:
description: GitHub Token
default: ${{ github.token }}
required: false
ngrok-auth-token:
description: 'The Ngrok Auth Token'
required: true
ssh-timeout:
description: 'The SSH timeout in seconds'
required: false
default: '300'
allowed-github-users:
description: 'The list of allowed GitHub users that will have their public keys added to the authorized_keys file'
required: false
allow-pr-owner:
description: 'Explictly allow the PR owner to connect via SSH'
required: false
default: 'false'
runs:
using: 'node20'
main: 'dist/index.js'