From 1f1c5dbd04427e810211d96b456d1c8f3178167a Mon Sep 17 00:00:00 2001 From: jandroav Date: Fri, 5 Jan 2024 09:09:33 +0100 Subject: [PATCH] chore(generate.yml): comment out unused workflow steps to improve readability and reduce noise in the file --- .github/workflows/generate.yml | 86 +++++++++++++++++----------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index f54ed3a..1e572a6 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -71,46 +71,46 @@ jobs: # SPACELIFT_API_KEY_SECRET: ${{ secrets.SPACELIFT_API_KEY_SECRET }} # run: spacectl stack deploy --id liquibase-github-actions - generate-action: - runs-on: ubuntu-latest - needs: [ create-command-list, create-action-repo ] - strategy: - matrix: - commands: ${{ fromJSON(needs.create-command-list.outputs.matrix) }} - steps: - - uses: actions/checkout@v3 - - - run: echo ${{ matrix.commands }} - - - name: Install Protoc - uses: arduino/setup-protoc@v1 - with: - version: '3.x' - repo-token: ${{ secrets.BOT_TOKEN }} - - - run: make generate VERSION=$LIQUIBASE_VERSION COMMAND="${{ matrix.commands }}" - - - name: Configure git user - run: | - git config --global init.defaultBranch main - git config --global user.name "liquibot" - git config --global user.email "liquibot@liquibase.org" - - - name: Push Action to Repo - run: ./scripts/push-to-repository.sh "${{ matrix.commands }}" $LIQUIBASE_VERSION - env: - BOT_TOKEN: ${{ secrets.BOT_TOKEN }} - - output-action: - runs-on: ubuntu-latest - needs: [ generate-action ] - steps: - - uses: actions/checkout@v3 - - - uses: actions/download-artifact@v3 - with: - name: commands-$LIQUIBASE_VERSION - path: ./ - - - name: Output Action Edit Link - run: ./scripts/output-release-edit.sh "v$LIQUIBASE_VERSION" + # generate-action: + # runs-on: ubuntu-latest + # needs: [ create-command-list, create-action-repo ] + # strategy: + # matrix: + # commands: ${{ fromJSON(needs.create-command-list.outputs.matrix) }} + # steps: + # - uses: actions/checkout@v3 + + # - run: echo ${{ matrix.commands }} + + # - name: Install Protoc + # uses: arduino/setup-protoc@v1 + # with: + # version: '3.x' + # repo-token: ${{ secrets.BOT_TOKEN }} + + # - run: make generate VERSION=$LIQUIBASE_VERSION COMMAND="${{ matrix.commands }}" + + # - name: Configure git user + # run: | + # git config --global init.defaultBranch main + # git config --global user.name "liquibot" + # git config --global user.email "liquibot@liquibase.org" + + # - name: Push Action to Repo + # run: ./scripts/push-to-repository.sh "${{ matrix.commands }}" $LIQUIBASE_VERSION + # env: + # BOT_TOKEN: ${{ secrets.BOT_TOKEN }} + + # output-action: + # runs-on: ubuntu-latest + # needs: [ generate-action ] + # steps: + # - uses: actions/checkout@v3 + + # - uses: actions/download-artifact@v3 + # with: + # name: commands-$LIQUIBASE_VERSION + # path: ./ + + # - name: Output Action Edit Link + # run: ./scripts/output-release-edit.sh "v$LIQUIBASE_VERSION"