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

Improving community GitHub Actions workflows (Lombiq Technologies: OCORE-182) #16295

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/close_stale_prs_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ 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 * * *'
# Every four hours at :39 UTC. A random time to avoid GitHub Actions being overloaded by scheduled workflows. Need
# to run this relatively frequently to avoid "No more operations left! Exiting..." warnings. Increasing the operations
# (see https://github.com/actions/stale#operations-per-run) is risky.
- cron: '39 */4 * * *'
MikeAlhayek marked this conversation as resolved.
Show resolved Hide resolved

jobs:
close-stale-prs-issues:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/first_time_contributor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
FIRST_ISSUE_COMMENT: >
Thank you for submitting your first issue, awesome! 🚀 We're thrilled to receive your input. If you haven't
completed the template yet, please take a moment to do so. This ensures that we fully understand your feature
request or bug report. A core team member will review your issue and get back to you.
request or bug report. On what happens next, see
[the docs](https://docs.orchardcore.net/en/latest/guides/contributing/managing-issues/#what-happens-after-you-open-an-issue).
FIRST_PR_COMMENT: >
Thank you for submitting your first pull request, awesome! 🚀 If you haven't already, please take a moment
to review our [contribution guide](https://docs.orchardcore.net/en/latest/guides/contributing/). This
Expand Down