Skip to content

ci: Don't run CI on not needed push #395

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

Merged
merged 1 commit into from
Jun 25, 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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/service_test_azblob.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Service Test Azblob

on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/service_test_fs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Service Test Fs

on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/service_test_hdfs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Service Test HDFS

on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/service_test_memory.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Service Test Memory

on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/service_test_s3.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Service Test S3

on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down