Skip to content

Commit

Permalink
build: rename master -> main
Browse files Browse the repository at this point in the history
yes, we are late to this party, sorry.
  • Loading branch information
Xiphe committed Nov 9, 2022
1 parent 53873d3 commit 7ba226e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 🍻 oazapfts!

[![CI](https://github.com/cellular/oazapfts/actions/workflows/ci.yml/badge.svg)](https://github.com/cellular/oazapfts/actions/workflows/ci.yml)

Generate TypeScript clients to tap into OpenAPI servers.

## Features
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function query(...params: string[]) {

/**
* Serializes nested objects according to the `deepObject` style specified in
* https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#style-values
* https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.0.md#style-values
*/
export function deep(
params: Record<string, any>,
Expand Down Expand Up @@ -40,7 +40,7 @@ export function deep(
* Property values of type array or object generate separate parameters
* for each value of the array, or key-value-pair of the map.
* For other types of properties this property has no effect.
* See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#encoding-object
* See https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.0.md#encoding-object
*/
export function explode(
params: Record<string, any>,
Expand Down

0 comments on commit 7ba226e

Please sign in to comment.