From 10c0dff99bd31b5b539c3bf09a826610a96dec7f Mon Sep 17 00:00:00 2001 From: Guillaume Falourd Date: Thu, 10 Mar 2022 11:01:03 -0300 Subject: [PATCH] update actions test files Signed-off-by: Guillaume Falourd --- .github/workflows/macos_action_test.yml | 4 +++- .github/workflows/ubuntu_action_test.yml | 2 ++ .github/workflows/windows_action_test.yml | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos_action_test.yml b/.github/workflows/macos_action_test.yml index c65845c..fc84af6 100644 --- a/.github/workflows/macos_action_test.yml +++ b/.github/workflows/macos_action_test.yml @@ -3,7 +3,8 @@ name: Action test on MacOS on: schedule: - cron: "0 4 * * MON-FRI" # Runs at 04:00 UTC - push: + # push: + # branches: [main] workflow_dispatch: jobs: @@ -13,5 +14,6 @@ jobs: - uses: actions/checkout@v2 - uses: GuillaumeFalourd/pull-request-action@main with: + source_branch: "main" destination_branch: "test" github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/ubuntu_action_test.yml b/.github/workflows/ubuntu_action_test.yml index 3dfbabd..c0f75d5 100644 --- a/.github/workflows/ubuntu_action_test.yml +++ b/.github/workflows/ubuntu_action_test.yml @@ -4,6 +4,7 @@ on: schedule: - cron: "0 2 * * MON-FRI" # Runs at 02:00 UTC push: + branches: [main] workflow_dispatch: jobs: @@ -13,5 +14,6 @@ jobs: - uses: actions/checkout@v2 - uses: GuillaumeFalourd/pull-request-action@main with: + source_branch: "main" destination_branch: "test" github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/windows_action_test.yml b/.github/workflows/windows_action_test.yml index 4377ad1..3e4f768 100644 --- a/.github/workflows/windows_action_test.yml +++ b/.github/workflows/windows_action_test.yml @@ -3,7 +3,8 @@ name: Action test on Windows on: schedule: - cron: "0 6 * * MON-FRI" # Runs at 06:00 UTC - push: + # push: + # branches: [main] workflow_dispatch: jobs: @@ -13,5 +14,6 @@ jobs: - uses: actions/checkout@v2 - uses: GuillaumeFalourd/pull-request-action@main with: + source_branch: "main" destination_branch: "test" github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file