Skip to content

Commit

Permalink
Merge pull request #81 from wp-media/develop
Browse files Browse the repository at this point in the history
Add Metasearch in config for the Release Note automation
  • Loading branch information
MathieuLamiot authored Feb 1, 2024
2 parents 5d2454b + cd220f9 commit 1648b32
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/group.one-deploy-production_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
tag_name: v${{ steps.create_tag.outputs.VERSION }}
body: ${{ github.event.head_commit.message }}
target_commitish: master
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
- name: Deploy to production
Expand Down
4 changes: 2 additions & 2 deletions config/github.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"rocket-cdn": "RocketCDN",
"wp-rocket.me": "WP Rocket website",
"imagify-website": "Imagify website",
"rocketcdn-website": "RocketCDN website"

"rocketcdn-website": "RocketCDN website",
"metasearch": "Metasearch"
}
}
33 changes: 33 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
openapi: 3.0.3
info:
title: TB-TT
description: |-
This a description from the endpoints from TB-TT service.
contact:
email: [email protected]
version: 1.0.0
externalDocs:
description: Notion Documentation
url: https://www.notion.so/wpmedia/TB-TT-137d921c1ff947c4a19e9d0a83262e6a?pvs=4
servers:
- url: https://wpm-tbtt.public-default.live1-k8s-cph3.one.com
tags:
- name: support
description: Automation for the support team
paths:
/support/wprocket-ips:
post:
description: Retrieves the list of servers and IPs used for WP Media products.
tags:
- support
responses:
200:
description: The list has been correctly retrieved and returned.
content:
application/json:
schema:
$ref: '#/components/schemas/SupportWPRocketIPsResponse'
components:
schemas:
SupportWPRocketIPsResponse:
type: string

0 comments on commit 1648b32

Please sign in to comment.