-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from ZettaScaleLabs/user_attachment
User attachment
- Loading branch information
Showing
38 changed files
with
1,583 additions
and
555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Add an issue to the next release | ||
description: | | ||
Add an issue as part of next release. | ||
This will be added to the current release project. | ||
You must be a contributor to use this template. | ||
labels: ["release"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Guidelines for a good issue** | ||
*Is your release item related to a problem?* | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
*Describe the solution you'd like* | ||
A clear and concise description of what you want to happen. | ||
*Describe alternatives you've considered* | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
*Additional context* | ||
Add any other context about the release item request here. | ||
- type: textarea | ||
id: item | ||
attributes: | ||
label: "Describe the release item" | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Enforce linking issues | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, edited, labeled] | ||
|
||
jobs: | ||
main: | ||
uses: eclipse-zenoh/zenoh/.github/workflows/enforce-linking-issues.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Update release project | ||
|
||
on: | ||
issues: | ||
types: [opened, edited, labeled] | ||
pull_request_target: | ||
types: [closed] | ||
branches: | ||
- main | ||
|
||
jobs: | ||
main: | ||
uses: eclipse-zenoh/zenoh/.github/workflows/update-release-project.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ | |
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
val zenohGroup = "io.zenoh" | ||
val zenohVersion = "1.0.0" | ||
|
||
buildscript { | ||
repositories { | ||
|
@@ -35,6 +37,9 @@ plugins { | |
} | ||
|
||
subprojects { | ||
group = zenohGroup | ||
version = zenohVersion | ||
|
||
repositories { | ||
google() | ||
mavenCentral() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,6 @@ | |
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
group = "io.zenoh" | ||
version = "0.11.0-dev" | ||
|
||
plugins { | ||
kotlin("jvm") | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.72.0 | ||
1.74.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,6 @@ | |
// ZettaScale Zenoh Team, <[email protected]> | ||
// | ||
|
||
group = "io.zenoh" | ||
version = "0.11.0-dev" | ||
|
||
plugins { | ||
id("com.android.library") | ||
kotlin("multiplatform") | ||
|
@@ -121,6 +118,10 @@ kotlin { | |
} | ||
|
||
publishing { | ||
publications.withType<MavenPublication> { | ||
version = project.version.toString() + if (project.hasProperty("SNAPSHOT")) "-SNAPSHOT" else "" | ||
} | ||
|
||
repositories { | ||
maven { | ||
name = "GithubPackages" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.