Support local changes

This commit is contained in:
Michal Dorner 2020-11-22 20:59:32 +01:00
parent d599443ba5
commit 1934d574ce
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
5 changed files with 100 additions and 9 deletions

View file

@ -71,6 +71,23 @@ jobs:
if: steps.filter.outputs.any != 'true' || steps.filter.outputs.error == 'true'
run: exit 1
test-local-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: echo "NEW FILE" > local
- run: git add local
- uses: ./
id: filter
with:
base: HEAD
filters: |
local:
- local
- name: filter-test
if: steps.filter.outputs.local != 'true'
run: exit 1
test-change-type:
runs-on: ubuntu-latest
steps: