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

Run actions on push to master, pull requests #2166

Merged
merged 2 commits into from
Jul 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
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ name: Docs
on:
# always trigger
push:
branches:
- master
pull_request:

jobs:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ name: Integration
# Only run when arrow or github changes
on:
push:
paths:
- arrow/**
- .github/**
branches:
- master
pull_request:
paths:
- arrow/**
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/miri.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ name: MIRI
on:
# always trigger
push:
branches:
- master
pull_request:

jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/object_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
name: "Object Store"

on:
push:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is an oversight -- and it means the object store test does not run against master (until this PR gets merged)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

branches:
- master
pull_request:
paths:
# Only run when object store files or github workflows change
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ name: Rust
on:
# always trigger
push:
branches:
- master
pull_request:

jobs:
Expand Down