lando/Auto Deploy Action
Auto deploys new versions of (currently only) node packages from their source repo to various target repos.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Jul 23, 2025
- License
- MIT
Pinned Snippet
uses: lando/auto-deploy-action@9407c37f9b94482afe80afe18eb284481d4c5cfb # v3.1.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| slug | A GitHub repo slug for the deploy target | yes | — |
| args | Additional args to pass into package manager install command | no | — |
| branch | The branch to auto deploy to. | no | — |
| deploy | Toggle to disable deploy. Mostly used for testing. | no | true |
| dirs | The dirs containing a package.json to update. | no | ./ |
| manager | The package manager to use. | no | auto |
| package | The name of the package. | no | — |
| pr | Open a PR instead of directly merging into the `branch` of `slug`. | no | true |
| pr-base | The base branch to open the PR against. | no | main |
| registry | Where the updated pacakge lives. | no | npm |
| separator | The separator between package and version | no | @ |
| token | A GitHub personal access token with the entire `repo` permission. | no | ${{ github.token }} |
| update | Toggle to disable updating. Mostly used for testing. | no | true |
| version | The version of the package. | no | — |
Outputs
| name | description |
|---|---|
| branch | The branch to deploy to. |
| package | The package name from user or manifest file to auto deploy. |
| version | The package version from user or manifest file to auto deploy. |
| separator | The separator between package and version |