Skip to content

Commit 64b4809

Browse files
authored
Revert release and set previous env var (#2291)
* Revert "Bump versions and add changelog entries. (#2290)" This reverts commit 0b75fb3. * add env var and speed up
1 parent 0b75fb3 commit 64b4809

File tree

4 files changed

+12
-23
lines changed

4 files changed

+12
-23
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@ jobs:
4747
4848
eval $cmd
4949
env:
50+
NPM_AUTH_TOKEN: ${{ secrets.YARN_NPM_AUTH_TOKEN }}
5051
YARN_NPM_AUTH_TOKEN: ${{ secrets.YARN_NPM_AUTH_TOKEN }}
5152
COREPACK_ENABLE_DOWNLOAD_PROMPT: 0

.github/workflows/release.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,19 @@ jobs:
2828
app-id: ${{ secrets.PIPELINE_GITHUB_APP_ID }}
2929
private-key: ${{ secrets.PIPELINE_GITHUB_APP_PRIVATE_KEY }}
3030

31-
- name: Checkout ${{ github.event.pull_request.base.ref }}
31+
- name: Checkout merge commit
3232
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3333
with:
3434
token: ${{ steps.get_token.outputs.token }}
35-
ref: ${{ github.event.pull_request.base.ref }}
36-
fetch-depth: 0
35+
ref: ${{ github.event.pull_request.merge_commit_sha }}
36+
fetch-depth: 1
37+
38+
- name: Checkout base branch
39+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
40+
with:
41+
token: ${{ steps.get_token.outputs.token }}
42+
ref: ${{ github.event.pull_request.base.sha }}
43+
fetch-depth: 1
3744

3845
- name: Release packages
3946
env:

CHANGELOG.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
# CHANGELOG
22

3-
## 1.35.0/2025-05-28
4-
5-
### Fixed
6-
* add `include` parameter to On-Call team rules test [#2270](https://github.com/DataDog/datadog-api-client-typescript/pull/2270)
7-
* fix On-Call spec [#2262](https://github.com/DataDog/datadog-api-client-typescript/pull/2262)
8-
* Fix incorrect pattern for url [#2223](https://github.com/DataDog/datadog-api-client-typescript/pull/2223)
9-
* Make metadata optional for GCS destination [#2213](https://github.com/DataDog/datadog-api-client-typescript/pull/2213)
10-
* Remove isReadOnly default when creating dashboards [#2212](https://github.com/DataDog/datadog-api-client-typescript/pull/2212)
11-
* Make assertion target be int or string [#2209](https://github.com/DataDog/datadog-api-client-typescript/pull/2209)
12-
13-
### Added
14-
* Add support for Datadog Events as a data source for rules [#2267](https://github.com/DataDog/datadog-api-client-typescript/pull/2267)
15-
* Add public APIs to search DORA events [#2263](https://github.com/DataDog/datadog-api-client-typescript/pull/2263)
16-
* Adding endpoints to manage Resource Evaluation Filters [#2236](https://github.com/DataDog/datadog-api-client-typescript/pull/2236)
17-
* Add Sev0 as a supported incident severity [#2225](https://github.com/DataDog/datadog-api-client-typescript/pull/2225)
18-
* Share timerestriction object [#2222](https://github.com/DataDog/datadog-api-client-typescript/pull/2222)
19-
* add On-Call Paging spec [#2216](https://github.com/DataDog/datadog-api-client-typescript/pull/2216)
20-
* Add pagination method for NDM ListDevices. [#2211](https://github.com/DataDog/datadog-api-client-typescript/pull/2211)
21-
223
## 1.34.1 / 2025-04-14
234

245
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@
106106
"engines": {
107107
"node": ">=12.0.0"
108108
},
109-
"version": "1.35.0",
109+
"version": "1.34.2-beta.0",
110110
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
111111
}

0 commit comments

Comments
 (0)