From 111c5d3692ba06826350f5e9abdbc6f92724efee Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Sun, 22 Dec 2024 15:28:18 +0330 Subject: [PATCH] chore: Clean up workflow YAML files - Removed unnecessary blank lines in the add-remove-label-on-comment.yml and check_python_dependencies.yml files to improve readability and maintainability. --- .github/workflows/add-remove-label-on-comment.yml | 1 - .github/workflows/check_python_dependencies.yml | 9 ++++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/add-remove-label-on-comment.yml b/.github/workflows/add-remove-label-on-comment.yml index 0f369db7d293..a658064f09f0 100644 --- a/.github/workflows/add-remove-label-on-comment.yml +++ b/.github/workflows/add-remove-label-on-comment.yml @@ -17,4 +17,3 @@ on: jobs: add_remove_labels: uses: openedx/.github/.github/workflows/add-remove-label-on-comment.yml@master - diff --git a/.github/workflows/check_python_dependencies.yml b/.github/workflows/check_python_dependencies.yml index 85a4e796ce78..f5e35c276b06 100644 --- a/.github/workflows/check_python_dependencies.yml +++ b/.github/workflows/check_python_dependencies.yml @@ -14,18 +14,18 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 - + - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - + - name: Install repo-tools run: pip install edx-repo-tools[find_dependencies] - name: Install setuptool - run: pip install setuptools - + run: pip install setuptools + - name: Run Python script run: | find_python_dependencies \ @@ -37,4 +37,3 @@ jobs: --ignore https://github.com/mitodl/edx-sga \ --ignore https://github.com/edx/token-utils \ --ignore https://github.com/open-craft/xblock-poll -