diff --git a/.github/workflows/dispatch-ci.yml b/.github/workflows/dispatch-ci.yml index 18bdf9a8b..ee094709d 100644 --- a/.github/workflows/dispatch-ci.yml +++ b/.github/workflows/dispatch-ci.yml @@ -1,9 +1,9 @@ name: Dispatch CI on: - # At 12:00 PM UTC, only on Tuesday and Wednesday + # At 2:10 PM UTC, only on Saturday and Sunday schedule: - - cron: '0 12 * * 2,3' + - cron: '10 14 * * 6,0' jobs: dispatch-ci: diff --git a/.github/workflows/keepalive.yml b/.github/workflows/keepalive.yml index 5c205f5ab..75b46c189 100644 --- a/.github/workflows/keepalive.yml +++ b/.github/workflows/keepalive.yml @@ -1,9 +1,9 @@ name: Keepalive on: - # At 9:45 AM UTC, on day 14 of the month + # At 2:10 PM UTC, on day 7 of the month schedule: - - cron: '45 9 14 * *' + - cron: '10 14 7 * *' workflow_dispatch: jobs: diff --git a/.github/workflows/update-js.yml b/.github/workflows/update-js.yml index 9c64778e5..ed0fc3db3 100644 --- a/.github/workflows/update-js.yml +++ b/.github/workflows/update-js.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: # Run on a schedule of once per quarter schedule: - - cron: '45 9 1 */3 *' + - cron: '10 14 1 */3 *' jobs: update-js: diff --git a/contributing.md b/contributing.md deleted file mode 100644 index fa6fa4dad..000000000 --- a/contributing.md +++ /dev/null @@ -1,12 +0,0 @@ -# Contributing - -Any open source product is only as good as the community behind it. You can participate by sharing code, ideas, or simply helping others. No matter what your skill level is, every contribution counts. - -See our [high level overview](http://silverstripe.org/contributing-to-silverstripe) on silverstripe.org on how you can help out. - -Or, for more detailed guidance, read one of the following pages: - - * [Sharing your opinion and raising issues](http://docs.silverstripe.org/en/3.2/contributing/issues_and_bugs/) - * [Providing code, whether it's creating a feature or fixing a bug](http://docs.silverstripe.org/en/3.2/contributing/code/) - * [Writing and translating documentation](http://docs.silverstripe.org/en/3.2/contributing/translations/) - * [Translating user-interface elements](http://docs.silverstripe.org/en/3.2/contributing/translation_process/)