-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: hand over to DT with restencil (#110)
* feat: hand over to DT * feat: restencil
- Loading branch information
Showing
15 changed files
with
1,625 additions
and
2,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,19 @@ | |
# syntax, such as anchors, will be fixed automatically. | ||
version: 2.1 | ||
orbs: | ||
shared: getoutreach/shared@2.24.0 | ||
shared: getoutreach/shared@2.28.1 | ||
queue: eddiewebb/[email protected] | ||
## <<Stencil::Block(CircleCIExtraOrbs)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
parameters: | ||
rebuild_cache: | ||
type: boolean | ||
default: false | ||
## <<Stencil::Block(CircleCIExtraParams)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
# Extra contexts to expose to all jobs below | ||
contexts: &contexts | ||
|
@@ -20,6 +26,7 @@ contexts: &contexts | |
- confluence | ||
- circleci-credentials | ||
- tray-webhooks | ||
- wizcli | ||
## <<Stencil::Block(extraContexts)>> | ||
|
||
## <</Stencil::Block>> | ||
|
@@ -75,7 +82,8 @@ workflows: | |
|
||
release: | ||
when: | ||
not: << pipeline.parameters.rebuild_cache >> | ||
and: | ||
- not: << pipeline.parameters.rebuild_cache >> | ||
jobs: | ||
## <<Stencil::Block(circleWorkflowJobs)>> | ||
|
||
|
@@ -95,12 +103,19 @@ workflows: | |
- shared/test | ||
filters: | ||
branches: | ||
only: *release_branches | ||
|
||
# Dryrun release for PRs. | ||
- shared/release: | ||
<<: *release | ||
only: main | ||
# Dryrun for PRs | ||
- shared/pre-release: &pre-release | ||
dryrun: true | ||
context: *contexts | ||
## <<Stencil::Block(circlePreReleaseDryRunExtra)>> | ||
|
||
## <</Stencil::Block>> | ||
requires: | ||
## <<Stencil::Block(circlePreReleaseDryRunRequires)>> | ||
|
||
## <</Stencil::Block>> | ||
- shared/test | ||
filters: | ||
branches: | ||
ignore: *release_branches | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Docs: https://docs.cortex.io/docs/reference/basics/entities#service-entities | ||
|
||
openapi: 3.0.0 | ||
info: | ||
title: goql | ||
description: > | ||
A GraphQL client package written in Go. | ||
x-cortex-type: service | ||
x-cortex-slack: | ||
channels: | ||
- name: dev-tooling-design | ||
notificationsEnabled: false | ||
- name: dev-tooling-support | ||
notificationsEnabled: false | ||
- name: dt-oncall | ||
notificationsEnabled: true | ||
- name: fnd-dt-alerts | ||
notificationsEnabled: true | ||
x-cortex-owners: | ||
- type: group | ||
name: fnd-dt | ||
provider: CORTEX | ||
x-cortex-tag: goql | ||
x-cortex-git: | ||
github: | ||
repository: getoutreach/goql | ||
x-cortex-oncall: | ||
pagerduty: | ||
id: P9HJAUT | ||
type: SERVICE | ||
x-cortex-link: | ||
## These are useful documentation links for this service. Please fill in the customLinks block if you have additional documentation links. | ||
## name: The name of the link | ||
## type: Choose one type from (dashboard,documentation,healthcheck,logs,metrics,runbook) | ||
## url: The link url | ||
## description(optional): Description to this link | ||
- name: API Docs | ||
type: api_documentation | ||
url: https://engdocs.outreach.cloud/github.com/getoutreach/goql#section-readme | ||
## <<Stencil::Block(customLinks)>> | ||
## <</Stencil::Block>> | ||
x-cortex-custom-metadata: | ||
app: goql | ||
name: goql | ||
repo: https://github.com/getoutreach/goql | ||
framework: stencil | ||
language: Golang | ||
stencil_version: v1.39.1 | ||
golang_version: 1.22.6 | ||
cli: false | ||
service: false | ||
product: Outreach | ||
lifecycle: in_development | ||
## <<Stencil::Block(extraAliases)>> | ||
## <</Stencil::Block>> | ||
reporting_team: fnd-dt | ||
lintroller: bronze | ||
x-cortex-groups: | ||
- lifecycle:in_development | ||
- product:Outreach | ||
- language:Golang | ||
- framework:stencil | ||
- engOrg:fnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
module github.com/getoutreach/goql | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
toolchain go1.22.6 | ||
|
||
require ( | ||
github.com/getoutreach/gobox v1.73.2 | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/getoutreach/gobox v1.90.2 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"license": "UNLICENSED", | ||
"devDependencies": { | ||
"@semantic-release/commit-analyzer": "^10.0.1", | ||
"@semantic-release/commit-analyzer": "^12.0.0", | ||
"@semantic-release/exec": "^6.0.3", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^9.0.3", | ||
"@semantic-release/npm": "^10.0.4", | ||
"@semantic-release/release-notes-generator": "^11.0.3", | ||
"conventional-changelog-conventionalcommits": "^6.0.0", | ||
"@semantic-release/github": "^10.0.3", | ||
"@semantic-release/npm": "^12.0.0", | ||
"@semantic-release/release-notes-generator": "^13.0.0", | ||
"conventional-changelog-conventionalcommits": "^7.0.2", | ||
"prettier": "^2.8.8", | ||
"semantic-release": "^21.0.5", | ||
"semver": "^7.5.2" | ||
"semantic-release": "^23.0.8", | ||
"semver": "^7.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.