Skip to content

Commit 5693954

Browse files
authored
feat: initial version (#1)
1 parent c9c4c8b commit 5693954

File tree

8 files changed

+112341
-3
lines changed

8 files changed

+112341
-3
lines changed

.github/dependabot.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
# create PRs for out-of-range updates
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
versioning-strategy: "increase"
9+
labels:
10+
- "maintenance"
11+
12+
# Update actions with branch-based versioning
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "daily"
17+
labels:
18+
- "maintenance"

.github/workflows/release.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- next
7+
- beta
8+
- "*.x" # maintenance releases
9+
10+
jobs:
11+
release:
12+
name: release
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-node@v1
17+
- run: npm ci
18+
- run: npm run build
19+
- run: npx semantic-release
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
NPM_TOKEN: ${{ secrets.OCTOKITBOT_NPM_TOKEN }}

.github/workflows/update.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Update
2+
on:
3+
repository_dispatch:
4+
types: [github-openapi-release]
5+
6+
push:
7+
branches:
8+
- dependabot/npm_and_yarn/openapi-typescript-*
9+
10+
workflow_dispatch:
11+
12+
jobs:
13+
update:
14+
runs-on: ubuntu-latest
15+
if: github.event_name == 'workflow_dispatch' || github.event.client_payload.action == 'published'
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-node@v1
19+
- run: npm ci
20+
# do not update cache for dependabot update
21+
- run: npm run download
22+
if: github.event_name != 'push'
23+
- run: npm run generate-types
24+
25+
# create/update pull request for dispatch event update
26+
- name: Create Pull Request
27+
if: github.event_name != 'push'
28+
uses: gr2m/[email protected]
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}
31+
with:
32+
title: "🚧 OpenAPI types changed"
33+
body: |
34+
Make sure to update the commits so that the merge results in helpful release notes, see [Merging the Pull Request & releasing a new version](https://github.com/octokit/rest.js/blob/master/CONTRIBUTING.md#merging-the-pull-request--releasing-a-new-version).
35+
36+
In general
37+
38+
- Avoid breaking changes at all costs
39+
- If there are no typescript changes, use `build: cache` as commit message
40+
- If there are there are only updates, use `fix: ...`
41+
- If there are any new additions, use `feat: ...`
42+
- If there are breaking changes, keep the previous ones and deprecate them. Only if there is no other way, add `BREAKING CHANGE: ...` to the commit body (not subject!) to trigger a breaking change.
43+
branch: "openapi-update"
44+
commit-message: "WIP"
45+
author: "Octokit Bot <[email protected]>"
46+
47+
# update pull request for dependabot update
48+
- name: Create Pull Request
49+
if: github.event_name == 'push'
50+
uses: gr2m/[email protected]
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}
53+
with:
54+
title: "🚧 OpenAPI types changed"
55+
body: |
56+
Make sure to update the commits so that the merge results in helpful release notes, see [Merging the Pull Request & releasing a new version](https://github.com/octokit/rest.js/blob/master/CONTRIBUTING.md#merging-the-pull-request--releasing-a-new-version).
57+
58+
In general
59+
60+
- Avoid breaking changes at all costs
61+
- If there are no typescript changes, use `build: cache` as commit message
62+
- If there are there are only updates, use `fix: ...`
63+
- If there are any new additions, use `feat: ...`
64+
- If there are breaking changes, keep the previous ones and deprecate them. Only if there is no other way, add `BREAKING CHANGE: ...` to the commit body (not subject!) to trigger a breaking change.
65+
branch: "${{ github.ref }}"
66+
commit-message: "WIP"
67+
author: "Octokit Bot <[email protected]>"

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Work in progress: [#1](https://github.com/gr2m/github-openapi-types/pull/1)
2-
3-
# github-openapi-types
1+
# openapi-types.ts
42

53
> Generated TypeScript definitions based on GitHub's OpenAPI spec
64

0 commit comments

Comments
 (0)