mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-14 10:14:57 +00: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
5
.github/workflows/backend-docker.yml
vendored
5
.github/workflows/backend-docker.yml
vendored
|
@ -17,10 +17,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 backend file changes
|
||||
if: github.event_name != 'push'
|
||||
uses: dorny/paths-filter@v2
|
||||
id: changed
|
||||
with:
|
||||
|
|
5
.github/workflows/backend-e2e-tests.yml
vendored
5
.github/workflows/backend-e2e-tests.yml
vendored
|
@ -24,10 +24,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 backend file changes
|
||||
if: github.event_name != 'push'
|
||||
uses: dorny/paths-filter@v2
|
||||
id: changed
|
||||
with:
|
||||
|
|
5
.github/workflows/backend-tests.yml
vendored
5
.github/workflows/backend-tests.yml
vendored
|
@ -25,10 +25,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 backend file changes
|
||||
if: github.event_name != 'push'
|
||||
uses: dorny/paths-filter@v2
|
||||
id: changed
|
||||
with:
|
||||
|
|
5
.github/workflows/frontend-docker.yml
vendored
5
.github/workflows/frontend-docker.yml
vendored
|
@ -23,10 +23,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:
|
||||
|
|
5
.github/workflows/frontend-e2e-tests.yml
vendored
5
.github/workflows/frontend-e2e-tests.yml
vendored
|
@ -34,10 +34,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:
|
||||
|
|
5
.github/workflows/frontend-lint.yml
vendored
5
.github/workflows/frontend-lint.yml
vendored
|
@ -24,10 +24,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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -45,10 +45,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:
|
||||
|
|
|
@ -21,10 +21,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
Reference in a new issue