Skip to content

Commit

Permalink
[webpack] test2
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Sep 14, 2024
1 parent 26a8db0 commit aa1023c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,11 @@ on:
paths-ignore:
- '**.md'
workflow_dispatch:

env:
IS_AND: ${{ startsWith(github.event.head_commit.message, '[android]') }}

jobs:
build:
runs-on: ubuntu-latest
if: ${{ env.IS_AND == 'true' }}
if: ${{ startsWith(github.event.head_commit.message, '[android]') == 'true' }}
permissions:
contents: read
packages: write
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ on:
pull_request:
branches: [master]

env:
IS_WP: ${{ startsWith(github.event.head_commit.message, '[webpack]') }}

jobs:
build:
runs-on: ubuntu-latest
if: ${{ env.IS_WP == 'true' }}
if: ${{ startsWith(github.event.head_commit.message, '[webpack]') == 'true' }}

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit aa1023c

Please sign in to comment.