diff --git a/.github/workflows/macos_action_test.yml b/.github/workflows/macos_action_test.yml index f9cbaea..6a82276 100644 --- a/.github/workflows/macos_action_test.yml +++ b/.github/workflows/macos_action_test.yml @@ -9,6 +9,7 @@ on: jobs: macos-minimal: runs-on: macos-latest + if: github.event_name != 'push' steps: - uses: actions/checkout@v2.3.4 - run: date > reports/macos_report_minimal.txt diff --git a/.github/workflows/ubuntu_action_test.yml b/.github/workflows/ubuntu_action_test.yml index 6c49d8b..f8a2b3d 100644 --- a/.github/workflows/ubuntu_action_test.yml +++ b/.github/workflows/ubuntu_action_test.yml @@ -9,6 +9,7 @@ on: jobs: ubuntu-minimal: runs-on: ubuntu-latest + if: github.event_name != 'push' steps: - uses: actions/checkout@v2.3.4 - run: date > reports/ubuntu_report_minimal.txt diff --git a/.github/workflows/windows_action_test.yml b/.github/workflows/windows_action_test.yml index 089dc6e..de49f2b 100644 --- a/.github/workflows/windows_action_test.yml +++ b/.github/workflows/windows_action_test.yml @@ -9,6 +9,7 @@ on: jobs: windows-minimal: runs-on: windows-latest + if: github.event_name != 'push' steps: - uses: actions/checkout@v2.3.4 - run: date > reports/windows_report_minimal.txt