Remove the stuff that only runs workflows when certain files are changed - it's not working as nice as it could

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner
2022-08-22 17:20:00 +01:00
parent f2d42a5b40
commit f2a84ce3dc

View File

@@ -10,32 +10,7 @@ on:
types: [published]
jobs:
# JOB to run change detection
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
requires-build: ${{ steps.filter.outputs.requires-build }}
steps:
-
name: Checkout Repo
uses: actions/checkout@v3
-
name: Check which files have been touched
uses: dorny/paths-filter@v2
id: filter
with:
filters: |
requires-build:
- 'src/**'
- 'test/**'
- '.github/workflows/test-and-build.yaml'
- 'build-and-test.sh'
test:
needs: changes
# Only run this step if certain files have been touched, or if it is a scheduled build.
if: ${{ needs.changes.outputs.requires-build == 'true' || github.event_name == 'schedule' }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repo