From bbb52a364169b8c5c415158f3d19a35edde0a2c6 Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Mon, 30 Oct 2023 14:02:29 +0000 Subject: [PATCH] Remove commit check --- .github/workflows/nightlybuild.yml | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/.github/workflows/nightlybuild.yml b/.github/workflows/nightlybuild.yml index 7a159f0..514c74c 100644 --- a/.github/workflows/nightlybuild.yml +++ b/.github/workflows/nightlybuild.yml @@ -5,30 +5,7 @@ on: - cron: "20 23 * * *" repository_dispatch: -jobs: - check: - runs-on: ubuntu-latest - name: Check latest commit - outputs: - commitcount: ${{ steps.commitswithintime.outputs.number-of-commits-within-time }} - steps: - - uses: actions/checkout@v2 - #with: - #fetch-depth: 0 - - - name: Check for commits within time - #uses: AlexHolderDeveloper/CommitsWithinTime@v1.1.5 - uses: TransactionProcessing/CommitsWithinTime@1.0.0 - id: commitswithintime - with: - hours: 24 - - - name: Get the output from CommitsWithinTime - run: | - echo "The 'has-new-commits-within-time' value is ${{ steps.commitswithintime.outputs.has-new-commits-within-time }}" - echo "The 'number-of-commits-within-time' value is ${{ steps.commitswithintime.outputs.number-of-commits-within-time }}" - echo "The 'total-commits' value is ${{ steps.commitswithintime.outputs.total-commits }}" - +jobs: build: name: "Nightly Build" env: @@ -36,9 +13,6 @@ jobs: runs-on: ubuntu-latest - needs: check - if: ${{ needs.check.outputs.commitcount > 0 }} - steps: - uses: actions/checkout@v2.3.4