Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/schedule_update_devcontainer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Update devcontainer version

on:
workflow_dispatch:
schedule:
- cron: "0 6 * * 2"

permissions: {}
jobs:
sync-copilot-instructions:
Comment thread
anthony-nhs marked this conversation as resolved.
Outdated
runs-on: ubuntu-22.04
environment: create_pull_request
permissions:
contents: read
Comment thread
anthony-nhs marked this conversation as resolved.

steps:
- name: Checkout local repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 0
persist-credentials: false
Comment thread
anthony-nhs marked this conversation as resolved.
- name: Update devcontainer version
uses: ./action.yml
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uses: ./action.yml is likely invalid for a local action reference. uses expects a directory path containing an action.yml/action.yaml, not a file path, so this workflow will fail to load the action. Point uses at the repository root directory (or move the action into a dedicated folder and reference that folder).

Suggested change
uses: ./action.yml
uses: ./

Copilot uses AI. Check for mistakes.
with:
calling_repo_base_branch: main
CREATE_PULL_REQUEST_APP_ID: ${{ secrets.CREATE_PULL_REQUEST_APP_ID }}
CREATE_PULL_REQUEST_PEM: ${{ secrets.CREATE_PULL_REQUEST_PEM }}
Loading