Skip to content

Commit 774faa9

Browse files
chore: tweak vcpkg baseline workflow
1 parent 7f4eaf5 commit 774faa9

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

.github/update_vcpkg_baselines.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from json import dumps, load
2-
from re import sub
32
from subprocess import run
43

54
vcpkg_repo = "https://github.com/microsoft/vcpkg"
@@ -32,13 +31,3 @@
3231

3332
with open("./vcpkg.json", "w", newline="\r\n") as f:
3433
f.write(vcpkg_json_str)
35-
36-
with open("./.github/workflows/main_ci.yml") as f:
37-
main_ci_yml = f.read()
38-
39-
main_ci_yml = sub(
40-
r"(VCPKG_COMMIT_ID: ).*", f"VCPKG_COMMIT_ID: {vcpkg_ref}", main_ci_yml
41-
)
42-
43-
with open("./.github/workflows/main_ci.yml", "w") as f:
44-
f.write(main_ci_yml)

.github/workflows/update_vcpkg_baselines.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23-
with:
24-
token: ${{ secrets.EDIT_WORKFLOW_TOKEN }}
2523

2624
- name: Setup Python
2725
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)