Fix autoblack

The conditional needs double equals.
This commit is contained in:
Paul O'Leary McCann 2021-07-10 16:02:39 +09:00 committed by GitHub
parent 616f4de034
commit 1c70c87daf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ on:
jobs:
autoblack:
if: github.repository_owner = 'explosion'
if: github.repository_owner == 'explosion'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2