Skip to content

Commit

Permalink
Merge pull request #8 from briandfoy/workflows-notest
Browse files Browse the repository at this point in the history
Update workflows to ensure they ignore each other
  • Loading branch information
briandfoy authored Aug 28, 2022
2 parents adf178b + 49004df commit e1bd32e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
# version 20220825.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
Expand All @@ -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-*'
Expand All @@ -21,8 +23,8 @@ on:
- '.appveyor.yml'
- '.gitattributes'
- '.github/workflows/macos.yml'
- '.github/workflows/windows.yml'
- '.github/workflows/release.yml'
- '.github/workflows/windows.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions macOS config for Perl 5 modules
# version 20220825.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
Expand All @@ -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-*'
Expand All @@ -20,8 +22,9 @@ on:
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.gitattributes'
- '.github/workflows/windows.yml'
- '.github/workflows/linux.yml'
- '.github/workflows/release.yml'
- '.github/workflows/windows.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions release config for Perl 5 modules
# version 20220825.001
# version 20220827.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Windows config for Perl 5 modules
# version 20220825.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
Expand All @@ -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
Expand All @@ -20,9 +22,9 @@ on:
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.gitattributes'
- '.github/workflows/release.yml'
- '.github/workflows/macos.yml'
- '.github/workflows/linux.yml'
- '.github/workflows/macos.yml'
- '.github/workflows/release.yml'
- '.gitignore'
- '.releaserc'
- 'Changes'
Expand Down

0 comments on commit e1bd32e

Please sign in to comment.