-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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 github.com:apache/shardingsphere into graal-…
…native-image
- Loading branch information
Showing
229 changed files
with
3,581 additions
and
1,737 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 |
---|---|---|
|
@@ -15,10 +15,7 @@ | |
# limitations under the License. | ||
# | ||
|
||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Check - Checkstyle and License Check | ||
name: Check | ||
|
||
on: | ||
push: | ||
|
@@ -41,30 +38,29 @@ on: | |
- '!*.md' | ||
|
||
concurrency: | ||
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }} | ||
group: check-${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
checkstyle-check: | ||
check-checkstyle: | ||
name: Check - checkstyle | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Cache Maven Repos | ||
uses: actions/cache@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: shardingsphere-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Run Checkstyle | ||
- name: Run checkstyle | ||
run: ./mvnw checkstyle:check -T1C | ||
|
||
check-license: | ||
name: license-check | ||
name: Check - license | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Check License Header | ||
uses: apache/[email protected] | ||
- uses: actions/checkout@v3 | ||
- uses: apache/[email protected] |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
# limitations under the License. | ||
# | ||
|
||
name: ISSUE Standardized Process | ||
name: Issue Automation | ||
|
||
on: | ||
schedule: | ||
|
@@ -30,14 +30,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'apache/shardingsphere' && github.event_name == 'issue_comment' }} | ||
steps: | ||
- name: Trigger The CI Workflow | ||
- name: Trigger the CI workflow | ||
if: ${{ contains( github.event.comment.body , '/run ci') }} | ||
uses: mvasigh/dispatch-action@main | ||
with: | ||
token: ${{ secrets.PERSONAL_TOKEN }} | ||
repo: shardingsphere | ||
owner: ${{ github.actor }} | ||
event_type: rerun-ci | ||
event_type: ci-completed | ||
remove-inactive: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'apache/shardingsphere' && github.event_name == 'issues' && github.event.action == 'reopened' }} | ||
|
@@ -55,15 +55,15 @@ jobs: | |
concurrency: check-inactive # singleton-run-stage | ||
if: ${{ github.repository == 'apache/shardingsphere' && github.event_name == 'schedule' }} | ||
steps: | ||
- name: check-inactive # add `status: inactive` label | ||
- name: Check inactive # add `status: inactive` label | ||
uses: actions-cool/[email protected] | ||
with: | ||
actions: 'check-inactive' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
inactive-day: 15 | ||
inactive-label: "status: inactive" | ||
body: | | ||
Hello ${{ github.event.issue.user.login }}, this issue has not received a reply for serveral days. | ||
Hello ${{ github.event.issue.user.login }}, this issue has not received a reply for several days. | ||
This issue is supposed to be closed. | ||
contents: "heart" | ||
close-issue: | ||
|
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.