Skip to content

Commit cff2120

Browse files
authored
Merge pull request #44 from briandfoy/workflows-notest
Update workflows to ensure they ignore each other
2 parents e2c8cbd + 5e16097 commit cff2120

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
2-
# version 20220827.001
2+
# version 20220828.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -9,9 +9,11 @@ on:
99
push:
1010
branches:
1111
- '**'
12-
- '!**windows**'
12+
- '!**appveyor**'
1313
- '!**macos**'
14+
- '!**notest**'
1415
- '!**release**'
16+
- '!**windows**'
1517
tags-ignore:
1618
# I tag release pushes but those should have already been tested
1719
- 'release-*'

.github/workflows/macos.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions macOS config for Perl 5 modules
2-
# version 20220827.001
2+
# version 20220828.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -9,9 +9,11 @@ on:
99
push:
1010
branches:
1111
- '**'
12-
- '!**windows**'
12+
- '!**appveyor**'
1313
- '!**linux**'
14+
- '!**notest**'
1415
- '!**release**'
16+
- '!**windows**'
1517
tags-ignore:
1618
# I tag release pushes but those should have already been tested
1719
- 'release-*'

.github/workflows/windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions Windows config for Perl 5 modules
2-
# version 20220827.001
2+
# version 20220828.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -9,8 +9,10 @@ on:
99
push:
1010
branches:
1111
- '**'
12+
- '!**appveyor**'
1213
- '!**linux**'
1314
- '!**macos**'
15+
- '!**notest**'
1416
- '!**release**'
1517
tags-ignore:
1618
# I tag release pushes but those should have already been tested

0 commit comments

Comments
 (0)