From 1dbf7e844857d3f8f53d6bb02633e23674108daa Mon Sep 17 00:00:00 2001 From: Anthony Brown Date: Fri, 27 Mar 2026 12:37:10 +0000 Subject: [PATCH 1/2] schedule dev container upgarade --- .../schedule_dev_container_update.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/schedule_dev_container_update.yml diff --git a/.github/workflows/schedule_dev_container_update.yml b/.github/workflows/schedule_dev_container_update.yml new file mode 100644 index 00000000..1ac8d819 --- /dev/null +++ b/.github/workflows/schedule_dev_container_update.yml @@ -0,0 +1,19 @@ +name: Scheduled Update Devcontainer Version + +on: + workflow_dispatch: + schedule: + - cron: "0 18 * * 4" + +jobs: + update_devcontainer_version: + uses: ./.github/workflows/update-dev-container-version.yml + permissions: + contents: read + packages: read + pull-requests: write + with: + base_branch: main + secrets: + CREATE_PULL_REQUEST_APP_ID: ${{ secrets.CREATE_PULL_REQUEST_APP_ID }} + CREATE_PULL_REQUEST_PEM: ${{ secrets.CREATE_PULL_REQUEST_PEM }} From 1ddb8648641ec169c26d8916d251c5bf13f479fd Mon Sep 17 00:00:00 2001 From: Anthony Brown Date: Fri, 27 Mar 2026 12:37:50 +0000 Subject: [PATCH 2/2] depenadabot cooldown --- .github/dependabot.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 0903e4a7..1bf0315e 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -12,6 +12,8 @@ updates: open-pull-requests-limit: 20 commit-message: prefix: "Upgrade: [dependabot] - " + cooldown: + default-days: 3 ################################### # Poetry ######################### @@ -26,6 +28,8 @@ updates: versioning-strategy: increase commit-message: prefix: "Upgrade: [dependabot] - " + cooldown: + default-days: 3 ################################### # NPM workspace ################## @@ -40,3 +44,5 @@ updates: versioning-strategy: increase commit-message: prefix: "Upgrade: [dependabot] - " + cooldown: + default-days: 3