Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix YAML line length #7476

Merged
merged 3 commits into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/issues_and_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,23 @@ on:
- cron: "0 12 * * *"

env:
CLOSE_MESSAGE: |
The fact this was automatically closed doesn't mean that the idea got rejected - it simply didn't get any priority for way too long to keep it open. If you're still interested in this, please let as know, we can consider re-opening it.
CLOSE_MESSAGE: >-
The fact this was automatically closed doesn't mean that the idea got rejected - it simply didn't get any priority for way too long to keep it open.
If you're still interested in this, please let as know, we can consider re-opening it.
DAYS_BEFORE_ISSUE_CLOSE: 30
DAYS_BEFORE_ISSUE_STALE: 90
DAYS_BEFORE_PR_CLOSE: 14
DAYS_BEFORE_PR_STALE: 90
STALE_CLARIFICATION: |
The purpose of this action is to enforce backlog review once in a while. This is mostly for maintainers and helps with keeping repository in good condition, because stale issues and PRs can accumulate over time and make it harder for others to find relevant information. It is also possible that some changes has been made to the repo already, and issue or PR became outdated, but wasn't closed for some reason. This action helps with periodic review and closing of such stale items in automated way.
STALE_CLARIFICATION: >-
The purpose of this action is to enforce backlog review once in a while.
This is mostly for maintainers and helps with keeping repository in good condition,
because stale issues and PRs can accumulate over time and make it harder for others to find relevant information.
It is also possible that some changes has been made to the repo already, and issue or PR became outdated, but wasn't closed for some reason.
This action helps with periodic review and closing of such stale items in automated way.

You may let maintainers handle this or verify current relevancy by yourself, to help with re-triage. Any activity will remove stale label so it won't be automatically closed at this point.

You may let maintainers handle this or verify current relevancy by yourself, to help with re-triage.
Any activity will remove stale label so it won't be automatically closed at this point.

jobs:
handle_stale:
Expand Down