Skip to content

Commit

Permalink
Merge branch 'main' into renovate/p-map-7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
khendrikse authored Dec 18, 2024
2 parents 5507025 + 56cecf6 commit d99c57b
Show file tree
Hide file tree
Showing 17 changed files with 658 additions and 1,080 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/benchmark-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,19 @@ jobs:
workflow: ${{ github.event.workflow.id }}
workflow_conclusion: success
name: delta-action-deltas
if_no_artifact_found: ignore
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Check File Existence
id: check-file-existence
uses: thebinaryfelix/check-file-existence-action@1.0.0
with:
files: '.delta.*'
- name: Get PR number
if: github.event.workflow_run.event == 'pull_request'
if: github.event.workflow_run.event == 'pull_request' && steps.check-file-existence.outputs.exists == 'true'
id: pr_number
run: echo "pr_number=$(cat pr_number)" >> $GITHUB_OUTPUT
- name: Post deltas to GitHub
if: steps.check-file-existence.outputs.exists == 'true'
uses: netlify/delta-action@v4
with:
title: '📊 Benchmark results'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
with:
name: delta-action-deltas
retention-days: 7
include-hidden-files: true
path: |
.delta.*
pr_number
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).



## [17.38.1](https://github.com/netlify/cli/compare/v17.38.0...v17.38.1) (2024-12-17)


### Bug Fixes

* **deps:** update dependency dotenv to v16.4.7 ([#6949](https://github.com/netlify/cli/issues/6949)) ([65dc682](https://github.com/netlify/cli/commit/65dc682d1036893f33bc3be4013f408a1ef2452b))
* **deps:** update dependency express to v4.21.2 ([#6950](https://github.com/netlify/cli/issues/6950)) ([d780a33](https://github.com/netlify/cli/commit/d780a3368ec2431baafac5112d52dab4b2f511e3))
* **deps:** update netlify packages ([#6959](https://github.com/netlify/cli/issues/6959)) ([3d794c1](https://github.com/netlify/cli/commit/3d794c103b7e120a507406eab66f2f99d29ac1c1))
* **deps:** update netlify packages ([#6965](https://github.com/netlify/cli/issues/6965)) ([233bee3](https://github.com/netlify/cli/commit/233bee3bd3d4938d4dcfcb394eedd2304cf7aabd))

## [17.38.0](https://github.com/netlify/cli/compare/v17.37.2...v17.38.0) (2024-12-03)


Expand Down
4 changes: 2 additions & 2 deletions bin/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { argv } from 'process'

import updateNotifier from 'update-notifier'

import { runProgram } from '../dist/utils/run-program.js'
import { createMainCommand } from '../dist/commands/main.js'
import { error } from '../dist/utils/command-helpers.js'
import getPackageJson from '../dist/utils/get-package-json.js'
import { createMainCommand } from '../dist/commands/main.js'
import { runProgram } from '../dist/utils/run-program.js'

// 12 hours
const UPDATE_CHECK_INTERVAL = 432e5
Expand Down
Loading

0 comments on commit d99c57b

Please sign in to comment.