Skip to content

Commit 019a8bf

Browse files
authored
Merge pull request coollabsio#3606 from coollabsio/next
v4.0.0-beta.347
2 parents 4c3beb6 + fe20480 commit 019a8bf

File tree

63 files changed

+492
-688
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+492
-688
lines changed

.github/workflows/docker-image.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.github/workflows/fix-php-code-style-issues

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lock closed Issues, Discussions, and PRs
2+
3+
on:
4+
schedule:
5+
- cron: '0 1 * * *'
6+
7+
jobs:
8+
lock-threads:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Lock threads after 30 days of inactivity
12+
uses: dessant/lock-threads@v5
13+
with:
14+
github-token: ${{ secrets.GITHUB_TOKEN }}
15+
issue-inactive-days: '30'
16+
pr-inactive-days: '30'
17+
discussion-inactive-days: '30'
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Manage Stale Issues and PRs
2+
3+
on:
4+
schedule:
5+
- cron: '0 2 * * *'
6+
7+
jobs:
8+
manage-stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Manage stale issues and PRs
12+
uses: actions/stale@v9
13+
id: stale
14+
with:
15+
stale-issue-message: 'This issue will be automatically closed in a few days if no response is received. Please provide an update with the requested information.'
16+
stale-pr-message: 'This pull request will be automatically closed in a few days if no response is received. Please update your PR or comment if you would like to continue working on it.'
17+
close-issue-message: 'This issue has been automatically closed due to inactivity.'
18+
close-pr-message: 'This pull request has been automatically closed due to inactivity.'
19+
days-before-stale: 14
20+
days-before-close: 7
21+
stale-issue-label: '⏱︎ Stale'
22+
stale-pr-label: '⏱︎ Stale'
23+
only-labels: '💤 Waiting for feedback'
24+
remove-stale-when-updated: true
25+
operations-per-run: 100
26+
labels-to-remove-when-unstale: '⏱︎ Stale, 💤 Waiting for feedback'
27+
close-issue-reason: 'not_planned'
28+
exempt-all-milestones: false

.github/workflows/pr-build.yml

Lines changed: 0 additions & 93 deletions
This file was deleted.

0 commit comments

Comments
 (0)