Skip to content

Commit

Permalink
feat: enable renovate bot
Browse files Browse the repository at this point in the history
  • Loading branch information
buluma committed Jan 9, 2024
1 parent 30ba6a4 commit 8d3d514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (!['pull_request_target', 'pull_request'].includes(github.context.eventName))
const { payload: { sender } } = github.context // eslint-disable-line camelcase

// exit early if PR is not by dependabot
if (!sender || !['dependabot[bot]', 'dependabot-preview[bot]'].includes(sender.login)) {
if (!sender || !['dependabot[bot]', 'dependabot-preview[bot]', 'renovate[bot]'].includes(sender.login)) {
core.warning(`exiting early - expected PR by "dependabot[bot]", found "${sender ? sender.login : 'no-sender'}" instead`)
process.exit(0)
}
Expand Down

0 comments on commit 8d3d514

Please sign in to comment.