forked from OrchardCMS/OrchardCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into srvcs_acct_to_login…
…_data
- Loading branch information
Showing
808 changed files
with
5,189 additions
and
3,424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Labels PRs without updates for 60 days as stale, then closes them 15 days later. | ||
# Labels issues that are labeled with "needs author feedback" without updates for 15 days as stale, then closes them 7 days later. | ||
name: Close Stale PRs and Issues | ||
|
||
on: | ||
schedule: | ||
# Every day at 1:39 AM UTC. A random time to avoid GitHub Actions being overloaded by scheduled workflows. | ||
- cron: '39 1 * * *' | ||
|
||
jobs: | ||
close-stale-prs-issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-pr-message: > | ||
It seems that this pull request didn't really move for quite a while. Is this something you'd like to | ||
revisit any time soon or should we close? Please comment if you'd like to pick it up. | ||
stale-pr-label: stale | ||
# Close the PR 15 days after marking it as stale. | ||
days-before-pr-close: 15 | ||
close-pr-message: > | ||
Closing this pull request because it has been stale for very long. If you think this is still relevant, | ||
feel free to reopen it. | ||
stale-issue-message: > | ||
It seems that this issue didn't really move for quite a while despite us asking the author for further | ||
feedback. Is this something you'd like to revisit any time soon or should we close? Please reply. | ||
stale-issue-label: stale | ||
days-before-issue-stale: 15 | ||
days-before-issue-close: 7 | ||
only-issue-labels: needs author feedback | ||
close-issue-message: > | ||
Closing this issue because it didn't receive further feedback from the author for very long. If you think | ||
this is still relevant, feel free to reopen it with the requested details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Adds a comment on the issue when its milestone is set. | ||
name: Comment Issue on Triage | ||
|
||
on: | ||
issues: | ||
# Note that this is triggered also when the milestone changes. Preventing that would require jumping through a lot | ||
# of hoops, and that should be rare anyway. | ||
types: [milestoned] | ||
|
||
jobs: | ||
comment-issue-on-triage: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
# Despite the trigger being called "issues", this would still run for setting the milestone of PRs too. | ||
if: github.event.issue.pull_request == null && github.event.issue.state == 'open' | ||
steps: | ||
- name: Add Comment | ||
run: gh issue comment "$NUMBER" --body "$BODY" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
# The double empty lines in the body are necessary; it'll show up as a single empty line in the comment. | ||
BODY: > | ||
We triaged this issue and set the milestone according to the priority we think is appropriate (see | ||
[the docs](https://docs.orchardcore.net/en/latest/docs/guides/contributing/managing-issues/) on how we | ||
triage and prioritize issues). | ||
This indicates when the core team may start working on it. However, if you'd like to contribute, we'd | ||
warmly welcome you to do that anytime. See our guide on contributions | ||
[here](https://docs.orchardcore.net/en/latest/docs/guides/contributing/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.