Skip to content

Commit c28e4e8

Browse files
committed
feat: upgraded to 7.6.1
1 parent c0817fc commit c28e4e8

File tree

3,236 files changed

+35462
-117119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,236 files changed

+35462
-117119
lines changed

.changes/header.tpl.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
6+
and is generated by [Changie](https://github.com/miniscruff/changie).

.changes/unreleased/.gitkeep

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Changed
2+
body: Upgraded to API version 7.6.1
3+
time: 2025-01-14T11:56:40.49630033+01:00

.changie.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
changesDir: .changes
2+
unreleasedDir: unreleased
3+
headerPath: header.tpl.md
4+
changelogPath: CHANGELOG.md
5+
versionExt: md
6+
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
7+
kindFormat: '### {{.Kind}}'
8+
changeFormat: '* {{.Body}}'
9+
kinds:
10+
- label: Added
11+
auto: minor
12+
- label: Changed
13+
auto: major
14+
- label: Deprecated
15+
auto: minor
16+
- label: Removed
17+
auto: major
18+
- label: Fixed
19+
auto: patch
20+
- label: Security
21+
auto: patch
22+
newlines:
23+
afterChangelogHeader: 1
24+
beforeChangelogVersion: 1
25+
endOfVersion: 1
26+
envPrefix: CHANGIE_
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Dependabot add changie file
2+
on:
3+
pull_request:
4+
types: [opened]
5+
6+
permissions:
7+
pull-requests: write
8+
issues: write
9+
repository-projects: write
10+
contents: write
11+
12+
jobs:
13+
dependabot-changie:
14+
runs-on: ubuntu-latest
15+
if: github.actor == 'dependabot[bot]'
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Fetch Dependabot metadata
21+
id: dependabot-metadata
22+
uses: dependabot/fetch-metadata@v2
23+
with:
24+
github-token: "${{ secrets.GITHUB_TOKEN }}"
25+
26+
- name: Create change file
27+
uses: miniscruff/changie-action@v2
28+
with:
29+
version: latest
30+
args: new --body "${{ github.event.pull_request.title }}" --kind Dependency
31+
32+
- uses: stefanzweifel/git-auto-commit-action@v5
33+
with:
34+
commit_message: "chore(deps): add changelog for dependabot updates"
35+
commit_user_name: "dependabot[bot]"
36+
commit_user_email: "dependabot[bot]@users.noreply.github.com"

.github/workflows/release.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: release
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
goreleaser:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
14+
- name: Set up Go
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version-file: go.mod
18+
19+
- name: Import GPG key
20+
id: import_gpg
21+
uses: paultyng/ghaction-import-gpg@v2.1.0
22+
env:
23+
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
24+
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
25+
26+
- name: Run GoReleaser
27+
uses: goreleaser/goreleaser-action@v6
28+
with:
29+
version: latest
30+
args: release --clean
31+
env:
32+
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go-version: [ '1.18', '1.23' ]
15+
go-version: [ '1.18', '1.19', '1.20', '1.21', '1.22', '1.23' ]
1616

1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/triage.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Triage
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
8+
jobs:
9+
add_to_project:
10+
name: Push issue or PR to board
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: get app token
14+
id: get-app-token
15+
uses: labd/action-gh-app-token@main
16+
with:
17+
app-id: ${{ secrets.RD_APP_ID }}
18+
private-key: ${{ secrets.RD_APP_PRIVATE_KEY }}
19+
installation-id: ${{ secrets.RD_APP_INSTALLATION_ID }}
20+
- name: set to project board
21+
uses: actions/add-to-project@v0.5.0
22+
with:
23+
project-url: https://github.com/orgs/labd/projects/3
24+
github-token: ${{ steps.get-app-token.outputs.app-token }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ _testmain.go
2727
openapi.json
2828

2929
/.idea
30+
31+
/openapi.yaml

.openapi-generator-ignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
/api/go.mod
44
/api/go.sum
55
/api/git_push.sh
6-
/api/.openapi-generator-ignore
6+
/api/.openapi-generator-ignore
7+
/api/api/openapi.yaml
8+
/api/test/*.go

0 commit comments

Comments
 (0)