Global Test #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Global Test | |
on: | |
workflow_dispatch: | |
inputs: | |
env: | |
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: | |
github_token: ${{ secrets.CUSTOM_TOKEN }} | |
#you must specify what pattern to include otherwise all files from the repository will be replicated | |
patterns_to_include: '.github/dependabot.yml' |