You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/branch-cleanup.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,10 @@ jobs:
13
13
run:
14
14
shell: bash
15
15
steps:
16
+
- uses: actions/checkout@v4
17
+
- uses: actions/setup-node@v4
18
+
with:
19
+
node-version: 22.11.0 # See package.json for the stable node version that works with our testing. Do not change this unless you know what you are doing as some node versions do not play nicely with our testing server.
16
20
- name: Clean up for deleted branch
17
21
id: cleanup-start
18
22
run: echo "Clean up for branch ${{ github.event.ref }}"
Copy file name to clipboardExpand all lines: .github/workflows/delete-experiment.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,9 @@ jobs:
23
23
shell: bash
24
24
steps:
25
25
- uses: actions/checkout@v4
26
+
- uses: actions/setup-node@v4
27
+
with:
28
+
node-version: 22.11.0 # See package.json for the stable node version that works with our testing. Do not change this unless you know what you are doing as some node versions do not play nicely with our testing server.
26
29
- name: Clean branch name
27
30
id: clean-branch-name
28
31
run: echo "results=$(echo '${{ github.ref }}' | sed 's/refs\/heads\///g' | sed 's/[^[:alnum:].-]/-/g')" >> $GITHUB_OUTPUT
0 commit comments