rename concurrency group name Signed-off-by: zhanghongtong <rory-z@outlook.com>
@@ -1,7 +1,7 @@
name: Build packages
concurrency:
- group: build-${{ github.ref }}
+ group: build-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
on:
@@ -37,6 +37,7 @@ jobs:
with:
image: tonistiigi/binfmt:latest
platforms: all
+ - uses: docker/setup-buildx-action@v1
- name: get docker sha256
id: disgest
run: |
name: Run fvt tests
- group: fvt-${{ github.ref }}
+ group: fvt-${{ github.event_name }}-${{ github.ref }}
name: Run test cases
- group: test-${{ github.ref }}
+ group: test-${{ github.event_name }}-${{ github.ref }}
@@ -12,6 +12,7 @@ on:
jobs:
python:
runs-on: ubuntu-latest
+ if: github.repository == 'lf-edge/ekuiper'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2