fix(ci): always run full CI on push

Signed-off-by: Renovate Bot <bot@renovateapp.com>
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-11-21 17:24:36 +01:00
parent 614374768a
commit 6e5363b971
9 changed files with 36 additions and 9 deletions

View file

@ -27,10 +27,13 @@ jobs:
permissions:
pull-requests: read
outputs:
changed: ${{ steps.changed.outputs.files }}
changed: ${{ github.event_name == 'push' || steps.changed.outputs.files }}
steps:
- uses: actions/checkout@v3
if: github.event_name != 'push'
- name: Check for frontend file changes
if: github.event_name != 'push'
uses: dorny/paths-filter@v2
id: changed
with: