Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Metasearch in config for the Release Note automation #81

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading