You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have a few locally created actions in the .github/actions directory but validation and autocomplete don't seem to work on these actions.
I have the following yaml file at .github/actions/wait-for-deployment-action
name: Wait for deploymentdescription: | Block until a deployment is finished for the pushed commit, and get the URL for running any further tests.branding:
icon: clockcolor: blackinputs:
github-token:
description: Your GitHub access tokenrequired: trueenvironment:
description: The deployment environment to wait fortimeout:
description: The number of seconds after which to fail if no deployment is found.default: 30interval:
description: The number of seconds to wait between repeated checks for deployments.default: 5sha:
description: | The commit SHA to wait for. Defaults to the current commit SHA. For PRs, this is the merge commit SHA. So provide ${{ github.event.pull_request.head.sha }} instead.outputs:
url:
description: The deployment URLid:
description: The GitHub deployment idruns:
using: node16main: dist/index.js
The below shows an attempt to autocomplete the params expected by a local action:
Describe the solution you'd like
For local actions to be validated and provide autocomplete for locally defined actions.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have a few locally created actions in the
.github/actions
directory but validation and autocomplete don't seem to work on these actions.I have the following yaml file at
.github/actions/wait-for-deployment-action
The below shows an attempt to autocomplete the params expected by a local action:

Describe the solution you'd like
For local actions to be validated and provide autocomplete for locally defined actions.
The text was updated successfully, but these errors were encountered: