diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 54998324..2c377dd0 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -16,7 +16,7 @@ on: jobs: build: runs-on: ubuntu-latest - if: ${{ startsWith(github.event.head_commit.message, '[android]') == 'true' }} + if: ${{ startsWith(github.event.head_commit.message, '[android]') }} permissions: contents: read packages: write diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml index 418bdbf2..8416a5ec 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/webpack.yml @@ -9,7 +9,7 @@ on: jobs: build: runs-on: ubuntu-latest - if: ${{ startsWith(github.event.head_commit.message, '[webpack]') == 'true' }} + if: ${{ startsWith(github.event.head_commit.message, '[webpack]') }} steps: - uses: actions/checkout@v2