Skip to content

Commit 68a124c

Browse files
authored
Merge branch 'main' into text-embedding-2024-11
2 parents a80453c + d56b312 commit 68a124c

File tree

2 files changed

+9
-19
lines changed

2 files changed

+9
-19
lines changed

functions/pubsub/publish/index.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ const pubsub = new PubSub();
2323
/**
2424
* Publishes a message to a Cloud Pub/Sub Topic.
2525
*
26-
* @example
27-
* gcloud functions call publish --data '{"topic":"[YOUR_TOPIC_NAME]","message":"Hello, world!"}'
28-
*
29-
* - Replace `[YOUR_TOPIC_NAME]` with your Cloud Pub/Sub topic name.
30-
*
3126
* @param {object} req Cloud Function request context.
3227
* @param {object} req.body The request body.
3328
* @param {string} req.body.topic Topic name on which to publish.

renovate.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
{
2-
"extends": [
3-
"config:base",
4-
"config:semverAllMonthly"
5-
],
2+
"extends": ["config:recommended", "config:semverAllMonthly"],
63
"baseBranches": ["main"],
7-
"ignorePaths": [
8-
"**/flexible_nodejs16_and_earlier/**"
9-
],
4+
"ignorePaths": ["**/flexible_nodejs16_and_earlier/**"],
105
"packageRules": [
116
{
127
"matchUpdateTypes": ["major"],
@@ -19,19 +14,19 @@
1914
"enabled": false
2015
},
2116
{
22-
"groupName": "GitHub Actions",
23-
"matchManagers": ["github-actions"],
24-
"pinDigests": true,
17+
"groupName": "GitHub Actions",
18+
"matchManagers": ["github-actions"],
19+
"pinDigests": true
2520
}
2621
],
2722
"force": {
2823
"constraints": {
2924
"node": "< 15.0.0"
3025
}
3126
},
32-
"dependencyDashboardAutoclose": true,
27+
"dependencyDashboardAutoclose": true,
3328
"schedule": "after 11am every 3 weeks on Monday",
34-
"stabilityDays": 15,
35-
"pinVersions": false,
36-
"rebaseStalePrs": true
29+
"minimumReleaseAge": "15 days",
30+
"rangeStrategy": "replace",
31+
"rebaseWhen": "behind-base-branch"
3732
}

0 commit comments

Comments
 (0)