Skip to content

Commit a4aa7f0

Browse files
authored
[CI] Ping assignees after 90 days (#16815)
The workflow pings assignees of issues if there are no updates for the last 60 days. Increase to 90 to reduce the number of these messages.
1 parent ae85db7 commit a4aa7f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sycl-issues-ping-assignee.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run:
2121
permissions:
2222
issues: write
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-latest
2424
env:
2525
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
REPO: ${{ github.repository }}
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Filter issues and ping
4141
run: |
42-
days_to_stale=60
42+
days_to_stale=90
4343
current_time=$(date +%s)
4444
4545
cat issues.json | jq -c '.[]' | while read -r issue; do

0 commit comments

Comments
 (0)