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

[all] avoid double-running workflows when pushing to a PR branch #146

Merged
merged 1 commit into from
Sep 28, 2023
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
3 changes: 3 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: C

on:
push:
branches:
- master
- main
paths:
- 'c/**'
- '.github/workflows/c.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: C++

on:
push:
branches:
- master
- main
paths:
- 'cpp/**'
- '.github/workflows/cpp.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Go

on:
push:
branches:
- master
- main
paths:
- 'go/**'
- '.github/workflows/go.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Nim

on:
push:
branches:
- master
- main
paths:
- 'nim/**'
- '.github/workflows/nim.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: PHP

on:
push:
branches:
- master
- main
paths:
- 'php/**'
- '.github/workflows/php.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pxd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Cython

on:
push:
branches:
- master
- main
paths:
- 'pxd/**'
- '.github/workflows/pxd.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Python

on:
push:
branches:
- master
- main
paths:
- 'py/**'
- '.github/workflows/py.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Rust

on:
push:
branches:
- master
- main
paths:
- 'rs/**'
- '.github/workflows/rs.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/utils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Utils

on:
push:
branches:
- master
- main
paths:
- 'utils/**'
- '.github/workflows/utils.yml'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Zig

on:
push:
branches:
- master
- main
paths:
- 'zig/**'
- '.github/workflows/zig.yml'
Expand Down
Loading