summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrian d foy <briandfoy@pobox.com>2022-08-28 04:16:13 -0400
committerbrian d foy <briandfoy@pobox.com>2022-08-28 04:16:13 -0400
commit6bab5bf83d2a5f21c1a5fe93fce2d39dbe4c1aed (patch)
tree75002e132c50005a1636a968f4354f0d02370ad7
parent7bfa8c0588896174adc9b59f0d69b0a45e3a2a56 (diff)
Update workflows to ensure they ignore each other
-rw-r--r--.github/workflows/linux.yml6
-rw-r--r--.github/workflows/macos.yml6
-rw-r--r--.github/workflows/windows.yml4
3 files changed, 11 insertions, 5 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d89e98f..e87a730 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
-# version 20220827.001
+# version 20220828.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
@@ -9,9 +9,11 @@ on:
push:
branches:
- '**'
- - '!**windows**'
+ - '!**appveyor**'
- '!**macos**'
+ - '!**notest**'
- '!**release**'
+ - '!**windows**'
tags-ignore:
# I tag release pushes but those should have already been tested
- 'release-*'
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 24d27e1..46de202 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions macOS config for Perl 5 modules
-# version 20220827.001
+# version 20220828.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
@@ -9,9 +9,11 @@ on:
push:
branches:
- '**'
- - '!**windows**'
+ - '!**appveyor**'
- '!**linux**'
+ - '!**notest**'
- '!**release**'
+ - '!**windows**'
tags-ignore:
# I tag release pushes but those should have already been tested
- 'release-*'
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 3124a9e..bf765d5 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Windows config for Perl 5 modules
-# version 20220827.001
+# version 20220828.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
@@ -9,8 +9,10 @@ on:
push:
branches:
- '**'
+ - '!**appveyor**'
- '!**linux**'
- '!**macos**'
+ - '!**notest**'
- '!**release**'
tags-ignore:
# I tag release pushes but those should have already been tested