We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4694829 commit 7c4f166Copy full SHA for 7c4f166
1 file changed
.github/workflows/schedule_update_devcontainer.yml
@@ -0,0 +1,27 @@
1
+name: Update devcontainer version
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 6 * * 2"
7
8
+permissions: {}
9
+jobs:
10
+ sync-copilot-instructions:
11
+ runs-on: ubuntu-22.04
12
+ environment: create_pull_request
13
+ permissions:
14
+ contents: read
15
16
+ steps:
17
+ - name: Checkout local repository
18
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
19
+ with:
20
+ fetch-depth: 0
21
+ persist-credentials: false
22
+ - name: Update devcontainer version
23
+ uses: ./action.yml
24
25
+ calling_repo_base_branch: main
26
+ CREATE_PULL_REQUEST_APP_ID: ${{ secrets.CREATE_PULL_REQUEST_APP_ID }}
27
+ CREATE_PULL_REQUEST_PEM: ${{ secrets.CREATE_PULL_REQUEST_PEM }}
0 commit comments