Skip to content

Commit

Permalink
chore(workflow): omit env commits
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama committed Jul 16, 2024
1 parent 267dc39 commit 61fd562
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
push-format:
runs-on: ubuntu-latest

if: "!contains(github.event.head_commit.message, 'chore(format): ')"
if: "!contains(github.event.head_commit.message, 'chore(format): ') && !contains(github.event.head_commit.message, 'chore(env): ')"

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
runs-on: ${{ matrix.os }}

if: "!contains(github.event.head_commit.message, 'chore(format): ')"
if: "!contains(github.event.head_commit.message, 'chore(format): ') && !contains(github.event.head_commit.message, 'chore(env): ')"

strategy:
matrix:
Expand Down

0 comments on commit 61fd562

Please sign in to comment.