From 1d8f539fa05cca712e70875201812c1b187fa5ba Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 27 Nov 2022 19:38:14 -0500 Subject: [PATCH] add dependabot-rebase and... reformat `patterns_to_include` keys --- .github/workflows/global-replicator.yml | 30 ++++++++++++++++++++----- 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/.github/workflows/global-replicator.yml b/.github/workflows/global-replicator.yml index 51e298b..5632ee1 100644 --- a/.github/workflows/global-replicator.yml +++ b/.github/workflows/global-replicator.yml @@ -22,7 +22,18 @@ jobs: include: - job_name: 'replicate workflows' patterns_to_ignore: '' - patterns_to_include: '.github/dependabot.yml,.github/label-actions.yml,.github/pr_release_template.md,.github/workflows/auto-create-pr.yml,.github/workflows/automerge.yml,.github/workflows/autoupdate.yml,.github/workflows/issues.yml,.github/workflows/issues-stale.yml,.github/workflows/pull-requests.yml,.github/workflows/yaml-lint.yml' # yamllint disable-line rule:line-length + patterns_to_include: >- + .github/dependabot.yml, + .github/label-actions.yml, + .github/pr_release_template.md, + .github/workflows/auto-create-pr.yml, + .github/workflows/automerge.yml, + .github/workflows/autoupdate.yml, + .github/workflows/dependabot-rebase.yml, + .github/workflows/issues.yml, + .github/workflows/issues-stale.yml, + .github/workflows/pull-requests.yml, + .github/workflows/yaml-lint.yml commit_message: 'ci: update global workflows' repos_to_ignore: '' topics_to_include: '' @@ -32,7 +43,9 @@ jobs: destination: '' - job_name: 'replicate python' patterns_to_ignore: '' - patterns_to_include: '.flake8,.github/workflows/python-flake8.yml' + patterns_to_include: >- + .flake8, + .github/workflows/python-flake8.yml commit_message: 'ci: update global python' repos_to_ignore: '' topics_to_include: 'python' @@ -42,7 +55,8 @@ jobs: destination: '' - job_name: 'replicate docker' patterns_to_ignore: '' - patterns_to_include: '.github/workflows/ci-docker.yml' + patterns_to_include: >- + .github/workflows/ci-docker.yml commit_message: 'ci: update global docker' repos_to_ignore: '' topics_to_include: 'docker' @@ -52,7 +66,9 @@ jobs: destination: '' - job_name: 'replicate cpp' patterns_to_ignore: '' - patterns_to_include: '.clang-format,.github/workflows/cpp-clang-format-lint.yml' + patterns_to_include: >- + .clang-format, + .github/workflows/cpp-clang-format-lint.yml commit_message: 'ci: update global cpp' repos_to_ignore: '' topics_to_include: 'cpp' @@ -62,7 +78,8 @@ jobs: destination: '' - job_name: 'custom issues' patterns_to_ignore: '' - patterns_to_include: '.github/ISSUE_TEMPLATE/config.yml' + patterns_to_include: >- + .github/ISSUE_TEMPLATE/config.yml commit_message: 'ci: update issue templates' repos_to_ignore: '' topics_to_include: 'replicator-custom-issues' @@ -72,7 +89,8 @@ jobs: destination: '' - job_name: 'release notifier' patterns_to_ignore: '' - patterns_to_include: '.github/workflows/release-notifier.yml' + patterns_to_include: >- + .github/workflows/release-notifier.yml commit_message: 'ci: update release notifier' repos_to_ignore: '' topics_to_include: 'replicator-release-notifications'