Skip to content

Commit 05d7c03

Browse files
Release v23.4.1 from PR #576
2 parents ac1a16f + aa2491e commit 05d7c03

File tree

6 files changed

+30
-8
lines changed

6 files changed

+30
-8
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Publish NPM Packages
2+
3+
on:
4+
pull_request:
5+
types:
6+
- labeled
7+
8+
jobs:
9+
publish:
10+
if: ${{ github.event.label.name == 'npm-ready-for-publish' }}
11+
uses: pipedrive-actions/github-actions-workflows/.github/workflows/reusable_cicd-npm-publish.yml@master
12+
with:
13+
revision: ${{ github.event.pull_request.head.ref }}
14+
secrets: inherit

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
88

99
## [Unreleased]
1010

11+
## [23.4.1] - 2024-10-09
12+
13+
### Changed
14+
- Migrate publish flow from Jenkins to GitHub Actions
15+
- Add devops-tooling as owner for .github/workflows/cicd_*
16+
1117
## [23.4.0] - 2024-09-24
1218
### Changed
1319
- Added the field "notes" to product prices in the body and response for v1 and v2
@@ -697,7 +703,8 @@ structure
697703
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
698704
* Fixed typo in lead example response (`crrency` to `currency`)
699705

700-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v23.4.0...HEAD
706+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v23.4.1...HEAD
707+
[23.4.1]: https://github.com/pipedrive/api-docs/compare/v23.4.0...v23.4.1
701708
[23.4.0]: https://github.com/pipedrive/api-docs/compare/v23.3.0...v23.4.0
702709
[23.3.0]: https://github.com/pipedrive/api-docs/compare/v23.2.5...v23.3.0
703710
[23.2.5]: https://github.com/pipedrive/api-docs/compare/v23.2.4...v23.2.5

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/workflows/cicd_* @pipedrive/devops-tooling

Jenkinsfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "23.4.0",
3+
"version": "23.4.1",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -83,5 +83,8 @@
8383
"lint-staged",
8484
"test",
8585
"build"
86-
]
86+
],
87+
"publishConfig": {
88+
"access": "public"
89+
}
8790
}

0 commit comments

Comments
 (0)