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