From b831aa2a154fa06684178139c8c503e73256cc63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Thu, 26 Oct 2023 10:23:39 +0200 Subject: [PATCH] rename workflow --- .github/workflows/distribute_base_files.yml | 23 ------------------- ...raries.yml => distribute_common_files.yml} | 20 ++++++++++++++-- 2 files changed, 18 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/distribute_base_files.yml rename .github/workflows/{distribute_workflows_for_libraries.yml => distribute_common_files.yml} (80%) diff --git a/.github/workflows/distribute_base_files.yml b/.github/workflows/distribute_base_files.yml deleted file mode 100644 index 4e4b8e2..0000000 --- a/.github/workflows/distribute_base_files.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Global workflow to rule them all - -on: - 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' - exclude_private: false - exclude_forked: true - branches: main - committer_username: simatic-ax-bot - commit_message: "ci: update license" diff --git a/.github/workflows/distribute_workflows_for_libraries.yml b/.github/workflows/distribute_common_files.yml similarity index 80% rename from .github/workflows/distribute_workflows_for_libraries.yml rename to .github/workflows/distribute_common_files.yml index 96d4104..f676168 100644 --- a/.github/workflows/distribute_workflows_for_libraries.yml +++ b/.github/workflows/distribute_common_files.yml @@ -1,9 +1,13 @@ -name: Workflow to distribute default files +name: Distribute common org files on: workflow_dispatch: {} #to enable manual triggering of the action jobs: + ################################################### + # Library related jobs + ################################################### + # This job deploys the files: # - workflows/libraries/release-library.yml, # - workflows/libraries/lint-repo.yml, @@ -36,7 +40,7 @@ jobs: deploy_common_files: runs-on: ubuntu-latest - + needs: deploy_library_workflows steps: - name: Checkout repository uses: actions/checkout@v3 @@ -52,6 +56,18 @@ jobs: committer_username: simatic-ax-bot commit_message: "ci: distribute common files" + ################################################### + # application examples related jobs + ################################################### + + ################################################### + # Template related jobs + ################################################### + + ################################################### + # Organization related jobs + ################################################### + # This job deploys the file: # LICENSE.md to ALL repositories deploy_license_file: