This is an automated email from the ASF dual-hosted git repository. jin pushed a commit to branch fix-mail in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git
commit 0a530b4cb539f8e585cfc4c5d1f2780eb5852e2d Author: imbajin <[email protected]> AuthorDate: Wed Oct 26 20:17:55 2022 +0800 chore: fix the missing mail address --- .asf.yaml | 7 ++++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 0696c155..259ce1a1 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -52,7 +52,8 @@ github: required_approving_review_count: 2 notifications: - issues: [email protected] - discussions: [email protected] pullrequests_status: [email protected] - #pullrequests_comment: [email protected] + # Note: before use the config, we should ensure the "mail" address has set well (exist) + #pullrequests_comment: [email protected] + #issues: [email protected] + #discussions: [email protected] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 115cd334..9927fc20 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,20 +12,20 @@ jobs: STATIC_DIR: assembly/static steps: - name: Install JDK 8 - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: '8' distribution: 'zulu' - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 2
