From: George Joseph Date: Mon, 23 Sep 2024 14:24:02 +0000 (-0600) Subject: .github: Fix realtime param on Weekly and Nightly tests and... X-Git-Tag: 21.6.0-rc1~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4ba44db5206f57d566b2b11445ae9a06d18ae11;p=thirdparty%2Fasterisk.git .github: Fix realtime param on Weekly and Nightly tests and... Rename the "Cleanup" job in the cherry-pick and recheck jobs to "Summary". (cherry picked from commit 94237f684a4094e8d6171408d518d6d83a0ee0b9) --- diff --git a/.github/workflows/NightlyTests.yml b/.github/workflows/NightlyTests.yml index ca716115d4..f4cf32754c 100644 --- a/.github/workflows/NightlyTests.yml +++ b/.github/workflows/NightlyTests.yml @@ -10,10 +10,6 @@ on: required: false type: string description: "Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST" - realtime: - type: boolean - required: false - default: false schedule: # Monday-Saturday 2am @@ -26,6 +22,6 @@ jobs: with: branches: ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }} group_list: ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }} - realtime: ${{ inputs.realtime }} + realtime: false secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/OnPRCherryPickTest.yml b/.github/workflows/OnPRCherryPickTest.yml index f1a5df80ad..f0b52f69f3 100644 --- a/.github/workflows/OnPRCherryPickTest.yml +++ b/.github/workflows/OnPRCherryPickTest.yml @@ -93,7 +93,7 @@ jobs: secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }} - Cleanup: + Summary: if: ${{ success() || failure() }} runs-on: ubuntu-latest needs: [Setup,Check] diff --git a/.github/workflows/OnPRRecheck.yml b/.github/workflows/OnPRRecheck.yml index 899622e219..3d0c4dd0c5 100644 --- a/.github/workflows/OnPRRecheck.yml +++ b/.github/workflows/OnPRRecheck.yml @@ -59,7 +59,7 @@ jobs: secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }} - Cleanup: + Summary: if: ${{ success() || failure() }} runs-on: ubuntu-latest needs: [Setup,ReCheck] diff --git a/.github/workflows/WeeklyTests.yml b/.github/workflows/WeeklyTests.yml index b5ca51b1b0..85c4df633f 100644 --- a/.github/workflows/WeeklyTests.yml +++ b/.github/workflows/WeeklyTests.yml @@ -10,10 +10,6 @@ on: required: false type: string description: "Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST" - realtime: - type: boolean - required: false - default: true schedule: # Sunday 2am @@ -26,6 +22,6 @@ jobs: with: branches: ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }} group_list: ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }} - realtime: ${{ inputs.realtime }} + realtime: true secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }}