This repository was archived by the owner on Jun 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ .whitesource WhiteSource configuration on github
12.cirrus.yml Cirrus CI (continuous integration) for FreeBSD
23.dir-locals.el Emacs control file
34.gitlab-ci.yml Gitlab CI (continuous integration) on gitlab (where enabled)
45.lgtm.yml LGTM.com configuration file
56.metaconf-exclusions.txt Symbols that should ignored when generating Configure
67.travis.yml Travis CI (continuous integration) on github (where enabled)
7- .whitesource WhiteSource configuration on github
88amigaos4/amigaio.c AmigaOS4 port
99amigaos4/amigaio.h AmigaOS4 port
1010amigaos4/amigaos.c AmigaOS4 port
Original file line number Diff line number Diff line change @@ -115,6 +115,8 @@ sub parse_commits_from_stdin {
115115 unless ($author ) { die $_ }
116116 chomp ($committer );
117117 unless ($committer ) { die $_ }
118+ next if $author eq ' whitesource-bolt-for-github[bot]'
119+ .' <whitesource-bolt-for-github[bot]@users.noreply.github.com>' ;
118120 process( $committer , $patch , $author );
119121 } else {
120122 die " XXX $_ did not match" ;
@@ -130,6 +132,8 @@ sub parse_commits_from_stdin_authors {
130132 while (<>) {
131133 next unless / ^Author:\s *(.*)$ / ;
132134 $author = $1 ;
135+ next if $author eq ' whitesource-bolt-for-github[bot]'
136+ .' <whitesource-bolt-for-github[bot]@users.noreply.github.com>' ;
133137 $author = _raw_address($author );
134138 $patchers {$author }++;
135139 }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ require './t/test.pl';
1414set_up_inc(' lib' , ' .' );
1515
1616find_git_or_skip(' all' );
17- skip_all(" on Travis CI" ) if $ENV {TRAVIS } and $^V =~ / c$ / ; # cperl #32
17+ # skip_all("on Travis CI" ) if $ENV{TRAVIS} and $^V =~ /c$/; # cperl #32
1818skip_all(" This distro may have modified some files in cpan/. Skipping validation." )
1919 if $ENV {' PERL_BUILD_PACKAGING' };
2020
You can’t perform that action at this time.
0 commit comments