From c7c5a249e6de549ba87dc87fcb282e768bb1d3b4 Mon Sep 17 00:00:00 2001 From: "aleksey.pronin" Date: Thu, 8 Aug 2024 15:49:37 +0300 Subject: [PATCH] MA-17028: fix label workflow --- .github/workflows/set_label_for_ignored_issues.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/set_label_for_ignored_issues.yml b/.github/workflows/set_label_for_ignored_issues.yml index ee0fef1..b79f2ff 100644 --- a/.github/workflows/set_label_for_ignored_issues.yml +++ b/.github/workflows/set_label_for_ignored_issues.yml @@ -1,14 +1,14 @@ name: Set Pay attention label for ignored issues on: schedule: - - cron: '*/6 * * * *' - - cron: '*/9 * * * *' + - cron: '0 11 */2 * *' + - cron: '0 11 */7 * *' jobs: set-label-for-issues: runs-on: ubuntu-latest steps: - name: Set label for issues - if: github.event.schedule == '*/6 * * * *' + if: github.event.schedule == '0 11 */2 * *' uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -30,7 +30,7 @@ jobs: } } - name: Set label for pull requests - if: github.event.schedule == '*/9 * * * *' + if: github.event.schedule == '0 11 */7 * *' uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }}