workflows/autobump: fix username setting (#89747)

master
Dawid Dziurla 2021-11-20 09:51:57 +01:00 committed by GitHub
parent 0c868cc205
commit 84870fee08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ jobs:
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: ${{ github.event == 'workflow_dispatch' && github.actor || 'BrewTestBot' }}
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'BrewTestBot' }}
- name: Bump formulae
uses: Homebrew/actions/bump-formulae@master