diff --git a/.github/workflows/format-libraries.yaml b/.github/workflows/format-libraries.yaml index 2eb9bd1..c7bbe08 100644 --- a/.github/workflows/format-libraries.yaml +++ b/.github/workflows/format-libraries.yaml @@ -10,50 +10,24 @@ env: COMMIT_MESSAGE: "chore: format libraries" jobs: - check-message: + update-lists: runs-on: ubuntu-latest - outputs: - continue: ${{ steps.message.outputs.continue }} steps: - name: Checkout Code id: checkout uses: actions/checkout@v4 - - name: Check Message - id: message - run: | - if [[ "${{ github.event.head_commit.message }}" == "${{ env.COMMIT_MESSAGE }}" ]]; then - echo "Stop action" - export CONTINUE='false' - else - echo "Continue with action" - export CONTINUE='true' - fi - echo $CONTINUE - echo "continue=$CONTINUE" >> $GITHUB_OUTPUT - - get-modified-libraries: - needs: check-message - runs-on: ubuntu-latest - steps: - - name: Checkout Code - if: needs.check-message.outputs.continue == 'true' - id: checkout - uses: actions/checkout@v4 - - name: webfactory/ssh-agent uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Format Libraries - if: needs.check-message.outputs.continue == 'true' id: format-libraries run: | bash ./create_library_lists.sh - name: Commit - if: needs.check-message.outputs.continue == 'true' id: commit run: | echo Git config diff --git a/flowblock_source_files/cool/coolifier.py b/flowblock_source_files/cool/coolifier.py deleted file mode 100644 index 8750b0c..0000000 --- a/flowblock_source_files/cool/coolifier.py +++ /dev/null @@ -1,15 +0,0 @@ -""" -name: "Coolifier" -inputs: - input_string: - type: Str - default: "Python" - user_input: True -outputs: - output_string: - type: Str -description: "Returns the input string concatinated with \" is cool\"" -""" - -def main(input_string): - return input_string + " is cool" diff --git a/flowblock_source_files/cool/flowblock_list.txt b/flowblock_source_files/cool/flowblock_list.txt deleted file mode 100644 index fffa7bc..0000000 --- a/flowblock_source_files/cool/flowblock_list.txt +++ /dev/null @@ -1 +0,0 @@ -coolifier.py