forked from apache/inlong
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/apache/incubator-inlong
- Loading branch information
Showing
633 changed files
with
7,744 additions
and
1,564 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,60 @@ | ||
## GitHub Workflows | ||
|
||
This directory contains all InLong CI checks. | ||
|
||
- [![InLong Build](https://github.com/apache/incubator-inlong/actions/workflows/ci_build.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_build.yml) | ||
|
||
Build InLong when pushing changes or opening a pull request. | ||
|
||
If it passes, you can download the InLong binary package from the workflow run's URL. | ||
|
||
- [![InLong Unit Test](https://github.com/apache/incubator-inlong/actions/workflows/ci_ut.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_ut.yml) | ||
|
||
Unit testing when pushing changes or opening a pull request. | ||
|
||
If it fails, you can check out reports form the workflow run's URL. | ||
|
||
- [![InLong Docker Build and Push](https://github.com/apache/incubator-inlong/actions/workflows/ci_docker.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_docker.yml) | ||
|
||
Build Docker images when pushing changes or opening a pull request. | ||
|
||
Only when pushing changes to the `apache/incubator-inlong` repository will the Docker images are pushed to [Docker Hub](https://hub.docker.com/u/inlong). | ||
|
||
- [![InLong Helm Charts Lint and Test](https://github.com/apache/incubator-inlong/actions/workflows/ci_chart_test.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_chart_test.yml) | ||
|
||
Lint and test the InLong Helm Chart when pushing changes or opening a pull request. | ||
|
||
In this workflow, firstly, install [Helm](https://helm.sh) using the [azure/setup-helm](https://github.com/Azure/setup-helm) action, | ||
then install [chart-testing](https://github.com/helm/chart-testing) using the [helm/chart-testing-action](https://github.com/helm/chart-testing-action) | ||
and install [Kind](https://github.com/kubernetes-sigs/kind) using the [helm/kind-action](https://github.com/helm/kind-action), | ||
finally, use the chart-testing tool to lint and install the InLong Helm Chart. | ||
And here is the [chart-testing configuration](../ct.yml) and here is the [kind configuration](../kind.yml). | ||
|
||
> NOTE: If the charts have not changed, they will not be linted, validated, installed and tested. | ||
- [![InLong Check License Header](https://github.com/apache/incubator-inlong/actions/workflows/ci_check_license.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_check_license.yml) | ||
|
||
Check licence header when pushing changes or opening a pull request using the [apache/skywalking-eyes](https://github.com/apache/skywalking-eyes) action. | ||
And here is the [configuration](../../.licenserc.yaml). | ||
|
||
- [![InLong Pull Request Labeler](https://github.com/apache/incubator-inlong/actions/workflows/ci_labeler.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_labeler.yml) | ||
|
||
label new pull requests based on the paths of files being changed using the [actions/labeler](https://github.com/actions/labeler) action. | ||
And here is the [labeler configuration](../labeler.yml) | ||
|
||
- [![InLong Close Stale Issues and PRs](https://github.com/apache/incubator-inlong/actions/workflows/ci_stale.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_stale.yml) | ||
|
||
Mark issues and pull requests that have not had recent interaction using the [actions/stale](https://github.com/actions/stale) action. | ||
|
||
- [![InLong Greeting](https://github.com/apache/incubator-inlong/actions/workflows/ci_greeting.yml/badge.svg)](https://github.com/apache/incubator-inlong/actions/workflows/ci_greeting.yml) | ||
|
||
Interact with newcomers using the [actions/first-interaction](https://github.com/actions/first-interaction) action. | ||
|
||
### Troubleshooting | ||
|
||
If you have any questions, welcome to contact the maintainers. And feel free to make a [pull request](https://github.com/apache/incubator-inlong/compare)! | ||
|
||
### Maintainers | ||
|
||
- [dockerzhang](https://github.com/dockerzhang) | ||
- [shink](https://github.com/shink) |
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 |
---|---|---|
|
@@ -20,17 +20,17 @@ name: InLong Check License Header | |
on: [ push, pull_request ] | ||
|
||
jobs: | ||
build: | ||
name: Check License Header | ||
check-license: | ||
name: Check license header | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check License Header | ||
uses: apache/skywalking-eyes@2f5c0bce5575a25916d6b809c4dac84e6c750d47 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Check license header | ||
uses: apache/[email protected] | ||
with: | ||
log: info | ||
config: .licenserc.yaml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,41 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
name: InLong Greeting | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
greet: | ||
name: Greet | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- name: Interact with newcomers | ||
uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: 'Thanks a lot for opening your first issue with us! 🧡 We''ll get back to you shortly! ⏳' | ||
pr-message: 'Thanks a lot for your contribution! 💖 This seems to be your first PR! 🌠 Please be sure to follow our [contribution guidelines](https://inlong.apache.org/community/how-to-contribute/)! 🎁' |
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.