generated from kestra-io/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 31fbc7d
Showing
27 changed files
with
1,361 additions
and
0 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,25 @@ | ||
root = true | ||
|
||
[*] | ||
charset=utf-8 | ||
end_of_line=lf | ||
insert_final_newline=false | ||
trim_trailing_whitespace=true | ||
indent_style=space | ||
indent_size=4 | ||
continuation_indent_size=4 | ||
|
||
[*.yml] | ||
indent_size=2 | ||
|
||
[*.md] | ||
indent_size=2 | ||
|
||
[*.yaml] | ||
indent_size=2 | ||
|
||
[*.json] | ||
indent_size=2 | ||
|
||
[*.css] | ||
indent_size=2 |
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,9 @@ | ||
# Match the .editorconfig | ||
* text=auto eol=lf | ||
|
||
# Scripts | ||
*.bat text eol=crlf | ||
*.sh text eol=lf | ||
|
||
# Gradle wrapper | ||
/gradlew text eol=lf |
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,55 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting an issue, please review the task list below before submitting the issue. Your issue report will be closed if the issue is incomplete and the below tasks not completed. | ||
NOTE: If you are unsure about something and the issue is more of a question a better place to ask questions is on [Github Discussions](https://github.com/kestra-io/kestra/discussions) or [Slack](https://api.kestra.io/v1/communities/slack/redirect). | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
placeholder: Tell us what should happen | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Actual Behaviour | ||
description: A concise description of what you're experiencing. | ||
placeholder: Tell us what happens instead | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Environment Information | ||
description: Environment information where the problem occurs. | ||
value: | | ||
- Kestra Version: | ||
- Plugin version: | ||
- Operating System (OS / Docker / Kubernetes): | ||
- Java Version (If not docker): | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Example flow | ||
description: Example flow source. | ||
placeholder: | | ||
If relevant, an example flow | ||
validations: | ||
required: false | ||
labels: | ||
- bug |
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,7 @@ | ||
contact_links: | ||
- name: GitHub Discussions | ||
url: https://github.com/kestra-io/kestra/discussions | ||
about: Ask questions about Kestra on Github | ||
- name: Chat | ||
url: https://api.kestra.io/v1/communities/slack/redirect | ||
about: Chat with us on Slack. |
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,15 @@ | ||
name: Feature request | ||
description: Create a new feature request | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please describe the feature you want for Kestra to implement, before that check if there is already an existing issue to add it. | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
placeholder: Tell us what feature you would like for Kestra to have and what problem is it going to solve | ||
validations: | ||
required: true | ||
labels: | ||
- enhancement |
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,8 @@ | ||
name: Other | ||
description: Something different | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See GitHub's docs for more information on this file: | ||
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "weekly" | ||
labels: | ||
- "dependency-upgrade" | ||
open-pull-requests-limit: 50 | ||
|
||
# Maintain dependencies for Gradle modules | ||
- package-ecosystem: "gradle" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to Gradle modules every week | ||
interval: "weekly" | ||
labels: | ||
- "dependency-upgrade" | ||
open-pull-requests-limit: 50 |
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,37 @@ | ||
<!-- Thanks for submitting a Pull Request to kestra. To help us review your contribution, please follow the guidelines below: | ||
- Make sure that your commits follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) specification e.g. `feat(ui): add a new navigation menu item` or `fix(core): fix a bug in the core model` or `docs: update the README.md`. This will help us automatically generate the changelog. | ||
- The title should briefly summarize the proposed changes. | ||
- Provide a short overview of the change and the value it adds. | ||
- Share a flow example to help the reviewer understand and QA the change. | ||
- Use "close" to automatically close an issue. For example, `close #1234` will close issue #1234. --> | ||
|
||
### What changes are being made and why? | ||
<!-- Please include a brief summary of the changes included in this PR e.g. closes #1234. --> | ||
|
||
--- | ||
|
||
### How the changes have been QAed? | ||
|
||
<!-- Include example code that shows how this PR has been QAed. The code should present a complete yet easily reproducible flow. | ||
```yaml | ||
# Your example flow code here | ||
``` | ||
Note that this is not a replacement for unit tests but rather a way to demonstrate how the changes work in a real-life scenario, as the end-user would experience them. | ||
Remove this section if this change applies to all flows or to the documentation only. --> | ||
|
||
--- | ||
|
||
### Setup Instructions | ||
|
||
<!--If there are any setup requirements like API keys or trial accounts, kindly include brief bullet-points-description outlining the setup process below. | ||
- [External System Documentation](URL) | ||
- Steps to set up the necessary resources | ||
If there are no setup requirements, you can remove this section. | ||
Thank you for your contribution. ❤️ --> |
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,148 @@ | ||
name: Main | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- v* | ||
|
||
pull_request: | ||
branches: | ||
- master | ||
|
||
workflow_dispatch: | ||
inputs: | ||
skip-test: | ||
description: 'Skip test' | ||
required: false | ||
type: string | ||
default: "false" | ||
|
||
jobs: | ||
check: | ||
name: Check & Publish | ||
runs-on: ubuntu-latest | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
GOOGLE_SERVICE_ACCOUNT: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# Caches | ||
- name: Gradle cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle*.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# JDK | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 21 | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/actions/wrapper-validation@v3 | ||
|
||
# Gradle check | ||
- name: Build with Gradle | ||
if: ${{ github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '' }} | ||
run: ./gradlew check | ||
|
||
# Allure check | ||
- name: Auth to Google Cloud | ||
id: auth | ||
if: ${{ always() && env.GOOGLE_SERVICE_ACCOUNT != 0 }} | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
credentials_json: '${{ secrets.GOOGLE_SERVICE_ACCOUNT }}' | ||
|
||
- uses: rlespinasse/github-slug-action@v4 | ||
|
||
- name: Publish allure report | ||
uses: andrcuns/[email protected] | ||
if: ${{ always() && env.GOOGLE_SERVICE_ACCOUNT != 0 && (github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '') }} | ||
env: | ||
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
JAVA_HOME: /usr/lib/jvm/default-jvm/ | ||
with: | ||
storageType: gcs | ||
resultsGlob: build/allure-results | ||
bucket: internal-kestra-host | ||
baseUrl: "https://internal.kestra.io" | ||
prefix: ${{ format('{0}/{1}/{2}', github.repository, env.GITHUB_HEAD_REF_SLUG != '' && env.GITHUB_HEAD_REF_SLUG || github.ref_name, 'allure/java') }} | ||
copyLatest: true | ||
ignoreMissingResults: true | ||
|
||
# Jacoco | ||
- name: 'Set up Cloud SDK' | ||
if: ${{ env.GOOGLE_SERVICE_ACCOUNT != 0 }} | ||
uses: 'google-github-actions/setup-gcloud@v2' | ||
|
||
- name: 'Copy jacoco files' | ||
if: ${{ env.GOOGLE_SERVICE_ACCOUNT != 0 }} | ||
run: | | ||
gsutil -m rsync -d -r build/reports/jacoco/test/ gs://internal-kestra-host/${{ format('{0}/{1}/{2}', github.repository, env.GITHUB_HEAD_REF_SLUG != '' && env.GITHUB_HEAD_REF_SLUG || github.ref_name, 'jacoco') }} | ||
# Publish | ||
- name: Publish package to Sonatype | ||
if: github.ref == 'refs/heads/master' | ||
env: | ||
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USER }} | ||
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_GPG_KEYID: ${{ secrets.SONATYPE_GPG_KEYID }} | ||
SONATYPE_GPG_PASSWORD: ${{ secrets.SONATYPE_GPG_PASSWORD }} | ||
SONATYPE_GPG_FILE: ${{ secrets.SONATYPE_GPG_FILE }} | ||
run: | | ||
echo "signing.keyId=${SONATYPE_GPG_KEYID}" > ~/.gradle/gradle.properties | ||
echo "signing.password=${SONATYPE_GPG_PASSWORD}" >> ~/.gradle/gradle.properties | ||
echo "signing.secretKeyRingFile=${HOME}/.gradle/secring.gpg" >> ~/.gradle/gradle.properties | ||
echo ${SONATYPE_GPG_FILE} | base64 -d > ~/.gradle/secring.gpg | ||
./gradlew publishToSonatype | ||
# Release | ||
- name: Release package to Maven Central | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
env: | ||
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USER }} | ||
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_GPG_KEYID: ${{ secrets.SONATYPE_GPG_KEYID }} | ||
SONATYPE_GPG_PASSWORD: ${{ secrets.SONATYPE_GPG_PASSWORD }} | ||
SONATYPE_GPG_FILE: ${{ secrets.SONATYPE_GPG_FILE }} | ||
run: | | ||
echo "signing.keyId=${SONATYPE_GPG_KEYID}" > ~/.gradle/gradle.properties | ||
echo "signing.password=${SONATYPE_GPG_PASSWORD}" >> ~/.gradle/gradle.properties | ||
echo "signing.secretKeyRingFile=${HOME}/.gradle/secring.gpg" >> ~/.gradle/gradle.properties | ||
echo ${SONATYPE_GPG_FILE} | base64 -d > ~/.gradle/secring.gpg | ||
./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
# GitHub Release | ||
- name: Create GitHub release | ||
uses: "marvinpinto/action-automatic-releases@latest" | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: false | ||
files: | | ||
build/libs/*.jar | ||
# Slack | ||
- name: Slack notification | ||
uses: 8398a7/action-slack@v3 | ||
if: ${{ always() && env.SLACK_WEBHOOK_URL != 0 }} | ||
with: | ||
status: ${{ job.status }} | ||
job_name: Check & Publish | ||
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took | ||
username: GitHub Actions | ||
icon_emoji: ':github-actions:' | ||
channel: 'C02DQ1A7JLR' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
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,16 @@ | ||
Thumbs.db | ||
.DS_Store | ||
.gradle | ||
build/ | ||
target/ | ||
out/ | ||
.idea | ||
.vscode | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.project | ||
.settings | ||
.classpath | ||
.attach* | ||
src/test/resources/application-test.yml |
Oops, something went wrong.