Skip to content

Commit a801346

Browse files
authored
Merge branch 'main' into features/superbeeny/gateway-timeouts
Signed-off-by: Nick Beenham <[email protected]>
2 parents 51cff8c + 7e1d737 commit a801346

File tree

3 files changed

+424
-8
lines changed

3 files changed

+424
-8
lines changed

.github/config/en-custom.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,4 +913,6 @@ timeoutPolicy
913913
httpproxy
914914
apis
915915
backendrequest
916-
sigs
916+
sigs
917+
Aditi
918+
Twilio

.github/workflows/stale-prs.yaml renamed to .github/workflows/close-stale-prs.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,21 @@ on:
2020
workflow_dispatch:
2121
schedule:
2222
# This is a cron job that runs every day at midnight
23-
- cron: '0 0 * * *'
24-
permissions:
25-
contents: read
26-
issues: write
27-
pull-requests: write
23+
- cron: '0 18 * * *' # Run the workflow every day at 6PM UTC (10AM PST).
2824
jobs:
2925
stale-prs:
3026
name: Check stale pull requests
3127
runs-on: ubuntu-latest
28+
permissions:
29+
pull-requests: write
3230
steps:
3331
- uses: actions/stale@v9
3432
with:
3533
stale-pr-message: |
36-
This pull request is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.
34+
This pull request has been automatically marked as stale because it has been inactive for 90 days. Remove stale label or comment or this will be closed in 7 days.
3735
close-pr-message: |
3836
This pull request has been closed due to inactivity. Feel free to reopen if you are still working on it.
39-
days-before-stale: 14
37+
days-before-stale: 90
4038
days-before-close: 7
4139
days-before-issue-stale: -1 # Ignore issues
4240
days-before-issue-close: -1 # Ignore issues

0 commit comments

Comments
 (0)