Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
remibaptistegio authored and jgiovaresco committed Mar 15, 2024
0 parents commit 6cab2ab
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 2.1

# this allows you to use CircleCI's dynamic configuration feature
setup: true

orbs:
gravitee: gravitee-io/gravitee@4.1.1

# our single workflow, that triggers the setup job defined above, filters on tag and branches are needed otherwise
# some workflow and job will not be triggered for tags (default CircleCI behavior)
workflows:
setup_build:
when:
not: << pipeline.git.tag >>
jobs:
- gravitee/setup_lib-build-config:
filters:
tags:
ignore:
- /.*/

setup_release:
when:
matches:
pattern: "/^[0-9]+\\.[0-9]+\\.[0-9]+(-(alpha|beta|rc)\\.[0-9]+)?$/"
value: << pipeline.git.tag >>
jobs:
- gravitee/setup_lib-release-config:
filters:
branches:
ignore:
- /.*/
tags:
only:
- /^[0-9]+\.[0-9]+\.[0-9]+(-(alpha|beta|rc)\.[0-9]+)?$/
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Default
* @gravitee-io/archi @gravitee-io/apim
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
**Issue**

Link to the original issue

**Description**

A small description of what you did in that PR.

**Additional context**

<!-- Add any other context about the PR here -->
<!-- It can be links to other PRs or docs or drawing -->
<!-- Or reproduction steps in case of bug fix -->
3 changes: 3 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["github>gravitee-io/renovate-config:lib"]
}
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
!.gitignore

**/target/
.idea/
*.iml
.DS_Store
.*.settings.xml
**/.logs

# eclipse
.settings/
.project
.classpath
/bin/

**/.tmp/
**/coverage/

# Deepcode (Snyk Code) cache
**/.dccache

# Exclude flattened version of the pom, for details see https://maven.apache.org/maven-ci-friendly.html#install-deploy
.flattened-pom.xml
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
printWidth: 140
tabWidth: 4
5 changes: 5 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= Gravitee.io - Integration API

== Description

The integration API contains the interfaces to implement to create an integration provider plugin for Gravitee.io APIM.

0 comments on commit 6cab2ab

Please sign in to comment.