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

.github: Run GitHub Actions on master #11439

Merged
merged 1 commit into from May 12, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/coccicheck.yaml
@@ -1,7 +1,10 @@
name: BPF checks

on:
- pull_request
pull_request: {}
push:
branches:
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: this can be just one line branches: [ master ], if you like :)

Copy link
Contributor

Choose a reason for hiding this comment

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

It can be push: { branches: [ master ] }, but I find that less readable...

Copy link
Member Author

Choose a reason for hiding this comment

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

I'm expecting we'll soon want to add the backport branches there, so probably not worth fixing.

Copy link
Contributor

Choose a reason for hiding this comment

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

sure!

- master

jobs:
coccicheck:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docs.yaml
@@ -1,7 +1,10 @@
name: Documentation Updates

on:
- pull_request
pull_request: {}
push:
branches:
- master

jobs:
build-html:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/go-mod.yaml
@@ -1,6 +1,10 @@
name: Go module vendoring

on: pull_request
on:
pull_request: {}
push:
branches:
- master

jobs:
go-mod:
Expand Down