Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates
A GitHub action that will automatically approve and merge a PR that only contains dependency updates, based on some rules. Also possible to disable the merge and use the `success` output to use in combination with other actions.
https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates
action automation automerge dependabot dependency gh-action merge security updater
Last synced: 12 days ago
JSON representation
A GitHub action that will automatically approve and merge a PR that only contains dependency updates, based on some rules. Also possible to disable the merge and use the `success` output to use in combination with other actions.
- Host: GitHub
- URL: https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates
- Owner: tjenkinson
- License: mit
- Created: 2020-08-30T19:52:33.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T04:10:56.000Z (about 1 month ago)
- Last Synced: 2024-10-14T13:05:51.039Z (25 days ago)
- Topics: action, automation, automerge, dependabot, dependency, gh-action, merge, security, updater
- Language: TypeScript
- Homepage:
- Size: 2.65 MB
- Stars: 17
- Watchers: 4
- Forks: 6
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gh-action-auto-merge-dependency-updates
A GitHub action that will automatically approve and merge a PR that only contains dependency updates, based on some rules.
If you run tests on PR's make sure you [configure those as required status checks](https://docs.github.com/en/github/administering-a-repository/enabling-required-status-checks) so that they need to go green before the merge can occur.
Note that the action does not check the lockfile is valid, so you should only set `allowed-actors` you trust, or validate that the lockfile is correct in another required action.
It currently supports npm and yarn.
By default this action will poll the API and wait for all status checks to pass which is not very efficient. It's recommended that you:
- Enable auto merge on your repo
- Enable the `use-auto-merge` option in the action
- Configure this action as a required status check
- This is so that if a PR is updated and auto merge needs disabling, the PR cannot auto merge before that happens## Config
- `use-auto-merge`: **\[Recommended\]** Enable GitHub auto merge on the PR and exit instead of waiting for the checks to complete and merging. Auto merge must be enabled on the repo, and you should make sure this is a required status check. _Default: `false`_
- `allowed-actors`: A comma separated list of usernames auto merge is allowed for.
- `repo-token` (optional): a GitHub API token. _Default: The token provided to the workflow (`${{ github.token }}`)_
- `allowed-update-types` (optional): A comma separated list of types of updates that are allowed. Supported: [devDependencies|dependencies]:[major|minor|patch|premajor|preminor|prerelease]. _Default: `devDependencies:minor, devDependencies:patch`_
- `approve` (optional): Automatically approve the PR if it qualifies for auto merge. _Default: `true`_
- `package-block-list` (optional): A comma separated list of packages that auto merge should not be allowed for.
- `package-allow-list` (optional): A comma separated list of packages that auto merge should only be allowed for. Omit to allow all packages.
- `merge` (optional): Merge the PR if it qualifies. _Default: `true`_
- `merge-method` (optional): Merge method. Supported: `merge`, `squash`, `rebase` _Default: `merge`_You should configure this action to run on the `pull_request_target` event. If you use `pull_request` you might need to provide a custom `repo-token` which has permission to merge. [The default token for dependabot PRs only has read-only access](https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/).
## Outputs
A `success` output is set to `true` if a commit is eligible for auto merge.
## Example Action
```yaml
name: Auto Merge Dependency Updateson:
- pull_request_targetjobs:
auto-merge-dependency-updates:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
concurrency:
group: 'auto-merge-dependency-updates:${{ github.head_ref }}'
cancel-in-progress: true
steps:
- uses: tjenkinson/gh-action-auto-merge-dependency-updates@v1
with:
use-auto-merge: true
allowed-actors: dependabot[bot]
```