Skip to content

Commit

Permalink
chore: add renovate_git_author to RENOVATE_GIT_IGNORED_AUTHORS (#537
Browse files Browse the repository at this point in the history
)
  • Loading branch information
marcusrbrown authored Jul 6, 2023
1 parent 9221ba4 commit b877d72
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
is-org-account: ${{ github.event.organization && 'true' || 'false' }}
log_level: ${{ inputs.log_level || 'debug' }}
print_config: ${{ inputs.print_config || 'false' }}
renovate_git_author: ${{ inputs.renovate_git_author || vars.RENOVATE_GIT_AUTHOR || '' }}
cache: ${{ inputs.cache && !inputs.dry_run && 'true' || github.event_name == 'schedule' && 'true' || 'false' }}
zzglobal_config: |-
{
Expand Down Expand Up @@ -173,6 +174,7 @@ jobs:
is-org-account=${{ env.is-org-account }}
log-level=${{ env.log_level }}
print-config=${{ env.print_config }}
renovate-git-author=${{ env.renovate_git_author }}
renovate-version=$(echo "${{ env.RENOVATE_VERSION }}" | tr -d '\-slim')
repositories=${{ !fromJSON(env.autodiscover) && format('["{0}"]', github.repository) || '' }}
EOF
Expand Down Expand Up @@ -235,8 +237,15 @@ jobs:
RENOVATE_DEPENDENCY_DASHBOARD_FOOTER: >-
- [ ] <!-- manual job -->Check here to trigger a Renovate run on this repository
RENOVATE_DRY_RUN: ${{ fromJSON(steps.configure.outputs.dry-run) && 'full' || '' }}
RENOVATE_GIT_AUTHOR: ${{ inputs.renovate_git_author || vars.RENOVATE_GIT_AUTHOR || '' }}
RENOVATE_GIT_IGNORED_AUTHORS: '["[email protected]","29139614+renovate[bot]@users.noreply.github.com","[email protected]","[email protected]"]'
RENOVATE_GIT_AUTHOR: ${{ steps.configure.outputs.renovate-git-author }}
RENOVATE_GIT_IGNORED_AUTHORS: |-
[
"[email protected]",
"29139614+renovate[bot]@users.noreply.github.com",
"[email protected]",
"[email protected]",
"${{ steps.configure.outputs.renovate-git-author }}"
]
RENOVATE_HOST_RULES: |-
[
{
Expand Down

0 comments on commit b877d72

Please sign in to comment.