siarheidudko/Autoupdater for dependencies (Node JS)
Automatic update of package dependencies with version up
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| token | Personal access token (PAT) used to fetch the repository. The PAT is configured with the local git config, which enables your scripts to run authenticated git commands. The post-job step removes the PAT. We recommend using a service account with the least permissions necessary. Also when generating a new PAT, select the least scopes necessary. [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) | — | ${{ github.token }} |
| author-email | Author's email of the commit. | — | actions@github.com |
| author-name | Author's name of the commit. | — | GitHUB Actions |
| ref | Repository name with owner. For example, siarheidudko/autoupdater. | — | ${{ github.repository }} |
| branch | Name of the branch. | — | master |
| working-directory | Working directory. | — | ${{ github.workspace }} |
| changelog-file | Path to changelog file. | — | ./CHANGELOG.md |
| package-file | Path to package.json file. | — | ./package.json |
| package-manager | Package manager (npm, pnpm, or yarn). | — | npm |
| debug | Show debugging log. | — | false |
| builds-and-checks | Checks to be performed before the push. | — | — |
| ignore-packages | Package names that should not be updated. | — | — |
Outputs
| name | description |
|---|---|
| updated | Update flag. If true, then the version has been updated. |
| dir | Directory with updates. |
| version | Package version. |