From 2a2cac5d8cb9a50654cb382eaf0419f61e216d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Fri, 29 Sep 2023 18:20:36 +0200 Subject: [PATCH] add license-update-wf --- .github/workflows/distribute_base_files.yml | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/distribute_base_files.yml diff --git a/.github/workflows/distribute_base_files.yml b/.github/workflows/distribute_base_files.yml new file mode 100644 index 0000000..d53caea --- /dev/null +++ b/.github/workflows/distribute_base_files.yml @@ -0,0 +1,26 @@ +name: Global workflow to rule them all + +on: + # push: + # branches: [ master ] #or main + workflow_dispatch: {} #to enable manual triggering of the action +jobs: + + replicate_changes: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Replicating global workflow + uses: derberg/manage-files-in-multiple-repositories@v2 + with: + github_token: ${{ secrets.DEPLOY_KEY }} + patterns_to_include: 'LICENSE.md' + repos_to_ignore: json + exclude_private: true + exclude_forked: true + branches: main + committer_username: sjuergen + commit_message: "ci: update license" \ No newline at end of file