From 940ddaa735997092c724166b1f3424b9490b480c Mon Sep 17 00:00:00 2001 From: John Spellman Date: Fri, 2 Dec 2022 08:42:02 -0700 Subject: [PATCH] [BUGS-5332] Turn off scheduled_update_check automation (#617) --- .circleci/config.yml | 20 ++++++++++---------- CODEOWNERS | 1 + README.md | 4 ++++ 3 files changed, 15 insertions(+), 10 deletions(-) create mode 100644 CODEOWNERS diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c9457da5..b04d5e261 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -274,13 +274,13 @@ workflows: - deploy_to_pantheon - visual_regression_test - scheduled_update_check: - triggers: - - schedule: - cron: "0 0 * * *" - filters: - branches: - only: - - master - jobs: - - composer_lock_updater + #scheduled_update_check: + # triggers: + # - schedule: + # cron: "0 0 * * *" + # filters: + # branches: + # only: + # - master + # jobs: + # - composer_lock_updater diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..c6d16d47d --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @pantheon-systems/cms-ecosystem diff --git a/README.md b/README.md index a065e773c..f2e0da5e5 100644 --- a/README.md +++ b/README.md @@ -130,3 +130,7 @@ If you need to enable Github Actions for an existing project, you should copy .c ## Updating your site When using this repository to manage your Drupal site, you will no longer use the Pantheon dashboard to update your Drupal version. Instead, you will manage your updates using Composer. Ensure your site is in Git mode, clone it locally, and then run composer commands from there. Commit and push your files back up to Pantheon as usual. + +## Re-enabling automation + +The automation which ran daily to check for composer updates has been disabled as of `12/1/22`. Build Tools users can re-enable automation to check for composer updates by uncommenting the `scheduled_update_check` in `.circleci/config.yml`. \ No newline at end of file