Skip to content

Commit

Permalink
PLAYGROUND_* inputs aren't actually required
Browse files Browse the repository at this point in the history
GitHub will happily still run if you don't give them, (and works just fine: see
https://github.com/SuffolkLITLab/docassemble-AssemblyLine/blob/f70ded5c029efd82e8d354d650fa02066422db8f/.github/workflows/run_form_tests.yml#L34-L36
) but it does give erraneous warnings in VSCode, if you have the GitHub actions
extension.
  • Loading branch information
BryceStevenWilley committed Jul 28, 2023
1 parent 28f4ae4 commit 38a2fe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ inputs:
required: true
PLAYGROUND_EMAIL:
description: 'The email of your docassemble testing account. This should be in your GitHub SECRETS or the SECRETS of your org.'
required: true
required: false
PLAYGROUND_PASSWORD:
description: 'The password of your docassemble testing account. This should be in your GitHub SECRETS or the SECRETS of your org.'
required: true
required: false
PLAYGROUND_ID:
description: 'The id of your docassemble testing account. This should be in your GitHub SECRETS or the SECRETS of your org.'
required: true
required: false
DOCASSEMBLE_DEVELOPER_API_KEY:
description: 'API key of the testing account with developer permissions on your docassemble server.'
required: true
Expand Down

0 comments on commit 38a2fe3

Please sign in to comment.