Skip to content

Commit 7ed0473

Browse files
committed
Allow CI runs specific to a CI provider
1 parent cfb7236 commit 7ed0473

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.appveyor.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,24 @@ branches:
1313
only:
1414
- master
1515
- develop
16+
- /appveyor\/.*/
1617
- /bugfix\/.*/
1718
- /feature\/.*/
1819
- /fix\/.*/
1920
- /pr\/.*/
2021

22+
skip_commits:
23+
files:
24+
- .drone.star
25+
- .github/workflows/*
26+
- .travis.yml
27+
- azure-pipelines/*
28+
- drone/*
29+
- travis/*
30+
- LICENSE
31+
- meta/*
32+
- README.md
33+
2134
matrix:
2235
fast_finish: false
2336
# Adding MAYFAIL to any matrix job allows it to fail but the build stays green:

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ on:
1818
- bugfix/**
1919
- feature/**
2020
- fix/**
21+
- github/**
2122
- pr/**
23+
paths-ignore:
24+
- LICENSE
25+
- meta/**
26+
- README.md
2227

2328
concurrency:
2429
group: ${{format('{0}:{1}', github.repository, github.ref)}}

0 commit comments

Comments
 (0)