mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 13:51:57 -04:00
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:
parent
614374768a
commit
6e5363b971
9 changed files with 36 additions and 9 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue