Skip to content

Commit

Permalink
git subrepo pull (merge) external/os-autoinst-common
Browse files Browse the repository at this point in the history
subrepo:
  subdir:   "external/os-autoinst-common"
  merged:   "9a505a7"
upstream:
  origin:   "https://github.com/os-autoinst/os-autoinst-common.git"
  branch:   "master"
  commit:   "9a505a7"
git-subrepo:
  version:  "0.4.6"
  origin:   "[email protected]:ingydotnet/git-subrepo"
  commit:   "110b9eb"
  • Loading branch information
perlpunk committed Jun 4, 2024
1 parent e21cf1f commit 8e70b57
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Check subject line length
uses: gsactions/commit-message-checker@v2
with:
pattern: '^.{1,72}(\n|$)'
pattern: '^(Revert "?)?.{1,72}(\n|$)'
flags: 'g'
error: 'The maximum subject line length of 72 characters is exceeded.'
excludeDescription: 'true'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
image: perldocker/perl-tester
steps:
- uses: actions/checkout@v4
- run: ./tools/perlcritic --quiet .
- run: make test-critic
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
image: registry.opensuse.org/devel/openqa/containers/os-autoinst_dev
steps:
- uses: actions/checkout@v4
- run: GITHUB_ACTIONS=1 ./tools/tidyall --check-only --all --quiet
- run: GITHUB_ACTIONS=1 make test-tidy
4 changes: 2 additions & 2 deletions external/os-autoinst-common/.github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
- uses: actions/checkout@v4
- uses: docker://registry.opensuse.org/home/okurz/container/containers/tumbleweed:yamllint
with:
entrypoint: yamllint
args: -c .yamllint --strict ./ --format github
entrypoint: make
args: test-yaml
4 changes: 2 additions & 2 deletions external/os-autoinst-common/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = https://github.com/os-autoinst/os-autoinst-common.git
branch = master
commit = db78c615c257969eed5d71f3fcf5efe1a09d3b5c
parent = 10683a4777aae56837fd0aaa789666914c5b71df
commit = 9a505a76f9835862211cdf59e07e2a3865320f49
parent = e21cf1ffbae9a9988a2f814e061d976da596f868
method = merge
cmdver = 0.4.6
10 changes: 9 additions & 1 deletion external/os-autoinst-common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,20 @@ update-deps:
tools/update-deps --cpanfile cpanfile

.PHONY: test
test: test-tidy test-author
test: test-tidy test-critic test-yaml test-author

.PHONY: test-tidy
test-tidy:
tools/tidyall --all --check-only

.PHONY: test-critic
test-critic:
tools/perlcritic --quiet .

.PHONY: test-yaml
test-yaml:
yamllint --strict ./

.PHONY: test-author
test-author:
prove -l -r xt/
2 changes: 1 addition & 1 deletion external/os-autoinst-common/cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on 'develop' => sub {
requires 'Code::TidyAll';
requires 'Perl::Critic';
requires 'Perl::Critic::Community';
requires 'Perl::Tidy', '== 20230912';
requires 'Perl::Tidy', '== 20240511.0.0';

};

Expand Down
2 changes: 1 addition & 1 deletion external/os-autoinst-common/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ main_requires:
perl(Module::CPANfile):

develop_requires:
perl(Perl::Tidy): '== 20230912'
perl(Perl::Tidy): '== 20240511.0.0'
perl(Code::TidyAll):
perl(Perl::Critic):
perl(Perl::Critic::Community):
Expand Down

0 comments on commit 8e70b57

Please sign in to comment.