Skip to content

Commit

Permalink
Merge pull request #565 from VKCOM/alekseypronin/cli/add_label_for_ig…
Browse files Browse the repository at this point in the history
…nored_issues/MA-17028

MA-17028: add label for ignored issues
  • Loading branch information
Pronin-vk authored Aug 8, 2024
2 parents 8df39b4 + cb94923 commit 32d0cc4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Set Pay attention label for ignored issues
on:
schedule:
- cron: '0 11 */2 * *'
- cron: '0 11 */7 * *'
- cron: '*/6 * * * *'
- cron: '*/9 * * * *'
jobs:
set-label-for-issues:
runs-on: ubuntu-latest
steps:
- name: Set label for issues
if: github.event.schedule == '0 11 */2 * *'
if: github.event.schedule == '*/6 * * * *'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -30,7 +30,7 @@ jobs:
}
}
- name: Set label for pull requests
if: github.event.schedule == '0 11 */7 * *'
if: github.event.schedule == '*/9 * * * *'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 32d0cc4

Please sign in to comment.