Skip to content

Commit

Permalink
github: Adjust Continuous integration workflow triggering
Browse files Browse the repository at this point in the history
Trigger the Continuous integration workflow either when a push occurs to
master or stable/* branch or when a pull request event occurs for a pull
request against master or stable/* branch.
  • Loading branch information
tjanez committed Jan 16, 2020
1 parent 911b71f commit d83f700
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changelog/2559.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Release tooling improvements
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Continuous integration

on: push
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- master
- stable/*
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- master
- stable/*

jobs:

Expand Down

0 comments on commit d83f700

Please sign in to comment.