Add path protection on push for workflows/boards_build.

According to the rules at https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#patterns-to-match-file-paths
This commit is contained in:
Guillaume Endignoux
2020-03-05 17:12:03 +01:00
parent 1fca16316e
commit 3af13f1957

View File

@@ -2,6 +2,9 @@
name: Build supported boards name: Build supported boards
on: on:
push: push:
paths:
- 'patches/tock/*'
- 'third_party/tock/**'
pull_request: pull_request:
types: [opened, synchronize, reopened] types: [opened, synchronize, reopened]