Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 16 additions & 13 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: Commit
on: push

permissions:
contents: read
id-token: read

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- &checkout
uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-java@v5
- &setup-java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version-file: .java-version
Expand All @@ -32,22 +38,19 @@ jobs:
# release:
# if: github.ref == 'refs/heads/master'
# runs-on: ubuntu-latest
# needs:
# - test
# needs: test
# permissions:
# contents: write
# id-token: write
# steps:
# - uses: actions/checkout@v6
# with:
# fetch-depth: 0
#
# - uses: actions/setup-java@v5
# with:
# distribution: 'temurin'
# java-version-file: .java-version
# cache: 'maven'
# - *checkout
# - *setup-java
#
# - name: Create release
# uses: extenda/actions/conventional-release@v0
# id: release
# with:
# name: openapi-httpserver-java
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
Expand Down
8 changes: 8 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>com.google.cloud.artifactregistry</groupId>
<artifactId>artifactregistry-maven-wagon</artifactId>
<version>2.2.5</version>
</extension>
</extensions>
3 changes: 3 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
default_stages: [pre-commit]
exclude: ^mvnw.*$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand Down
295 changes: 295 additions & 0 deletions mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading