From 8130a3b1411aed3a5190b427df7f2025d54b4357 Mon Sep 17 00:00:00 2001 From: Pavel Buchart Date: Mon, 29 Jan 2024 15:23:55 +0100 Subject: [PATCH] Remove globaltest workflow --- .github/workflows/globaltest.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/globaltest.yml diff --git a/.github/workflows/globaltest.yml b/.github/workflows/globaltest.yml deleted file mode 100644 index e12b66a..0000000 --- a/.github/workflows/globaltest.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Global Test -on: - workflow_dispatch: - inputs: - repo_name: - description: Repositories to replicate dependabot config to - required: false - -jobs: - replicate_changes: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: derberg/manage-files-in-multiple-repositories@v2 - with: - # using my personal token here - # needed scopes: repo, workflow - github_token: ${{ secrets.GLOBAL_GH_ACTION_TOKEN }} - #you must specify what pattern to include otherwise all files from the repository will be replicated - patterns_to_include: '.github/dependabot.yml' - commit_message: 'Update dependabot.yml config' - committer_username: 'DX Team' - committer_email: 'dx@customink.com' - exclude_forked: true