From 1dbf7e844857d3f8f53d6bb02633e23674108daa Mon Sep 17 00:00:00 2001 From: Anthony Brown Date: Fri, 27 Mar 2026 12:37:10 +0000 Subject: [PATCH] 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 }}