Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: gateway disconnect issue #51

Merged
merged 1 commit into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/cherry-pick.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Auto Cherry Pick
on: workflow_dispatch

defaults:
run:
shell: bash

jobs:
auto-cherry-pick:
runs-on: [self-hosted, nebula-fast]
container:
image: reg.vesoft-inc.com/dashboard/dashboard-dev:centos7
credentials:
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
steps:
- name: keep workspace empty
run: |
rm -rf *
- name: git config set
env:
CLOUD_GH_PAT: ${{ secrets.GITHUB_TOKEN }}
- name: auto cherry pick
uses: xigongdaEricyang/cherry-pick-robot@with-python
with:
repo_token: ${{ secrets.CLOUD_GH_PAT }}
pr_label: ^v[0-9]*\.[0-9]*-cherry-pick$

10 changes: 6 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,22 @@ jobs:
os:
- centos7
container:
image: vesoft/nebula-dev:${{ matrix.os }}
image: reg.vesoft-inc.com/dashboard/dashboard-dev:${{ matrix.os }}
credentials:
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
steps:
- name: keep workspace empty
run: |
if [[ -d source ]]; then rm -rf source; fi
if [[ -d nebula-dashboard ]]; then rm -rf nebula-dashboard; fi
rm -rf *
- uses: actions/checkout@v2
with:
path: source/nebula-dashboard
- uses: actions/checkout@v2
with:
repository: vesoft-inc/nebula-http-gateway
path: source/nebula-http-gateway
ref: v2.2.0
ref: v2.2.1
- uses: actions/setup-go@v2
with:
go-version: '^1.13.1'
Expand Down