Skip to content

Commit

Permalink
GitHub Actions のイベントを限定
Browse files Browse the repository at this point in the history
- Pull Request を master にマージした場合に Job が2つ走らないよう修正
- *.md ファイルのみの修正は Job を実行しないよう修正
  • Loading branch information
nanasess committed Oct 28, 2019
1 parent 1d988a6 commit 1a6539a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
name: CI/CD for EC-CUBE
on:
push:
branches:
- master
tags:
- '*'
paths:
- '**'
- '!*.md'
pull_request:
paths:
- '**'
- '!*.md'
release:
types: [ published ]

Expand Down

0 comments on commit 1a6539a

Please sign in to comment.