Skip to content

Commit

Permalink
Improving community GitHub Actions workflows (#16295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Jul 2, 2024
1 parent b9a9ff8 commit 58d614b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
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 * * *'

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

0 comments on commit 58d614b

Please sign in to comment.