Skip to content

Commit

Permalink
[GitHub Actions] trigger push workflows on push to master only (#18924)
Browse files Browse the repository at this point in the history
These are being triggered on pushes to all branches now, including
epochs/* and triggers/* branches. That's not useful.
  • Loading branch information
foolip committed Sep 10, 2019
1 parent 1afb9ed commit 8d867f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
@@ -1,4 +1,7 @@
on: push
on:
push:
branches:
- master
name: Build & Publish Documentation Website
jobs:
website-build-and-publish:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/push-build-release-manifest.yml
@@ -1,4 +1,7 @@
on: push
on:
push:
branches:
- master
name: Build & Release Manifest
jobs:
manifest-build-and-tag:
Expand Down

0 comments on commit 8d867f8

Please sign in to comment.