Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.

Commit c2e6bb7

Browse files
committed
initial commit
0 parents  commit c2e6bb7

File tree

1,035 files changed

+170207
-0
lines changed

Some content is hidden

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

1,035 files changed

+170207
-0
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [BeryJu]

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
assignees:
8+
- BeryJu

.github/workflows/update.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: update
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "*/15 * * * *"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
schema:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- id: generate_token
16+
uses: tibdex/github-app-token@v1
17+
with:
18+
app_id: ${{ secrets.GH_APP_ID }}
19+
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
20+
- name: Check out code
21+
uses: actions/checkout@v3
22+
with:
23+
fetch-depth: 0
24+
token: ${{ steps.generate_token.outputs.token }}
25+
- uses: actions/setup-go@v4
26+
- name: Check for updates
27+
run: make
28+
- name: Push
29+
id: push
30+
env:
31+
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
32+
# ID from https://api.github.com/users/authentik-automation[bot]
33+
run: |
34+
git config --global user.email "135050075+authentik-automation[bot]@users.noreply.github.com"
35+
git config --global user.name "authentik-automation[bot]"
36+
git add .
37+
git commit -m "Update API Client" -m "$(cat diff.test)" || exit 0
38+
git push
39+
version=$(cd version && go run .)
40+
git tag $version
41+
git push --tags
42+
gh release create $version -F diff.test

.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/kotlin
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=kotlin
3+
4+
### Kotlin ###
5+
# Compiled class file
6+
*.class
7+
8+
# Log file
9+
*.log
10+
11+
# BlueJ files
12+
*.ctxt
13+
14+
# Mobile Tools for Java (J2ME)
15+
.mtj.tmp/
16+
17+
# Package Files #
18+
*.jar
19+
*.war
20+
*.nar
21+
*.ear
22+
*.zip
23+
*.tar.gz
24+
*.rar
25+
26+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
27+
hs_err_pid*
28+
replay_pid*
29+
30+
# End of https://www.toptal.com/developers/gitignore/api/kotlin

.openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

0 commit comments

Comments
 (0)