diff --git a/.github/workflows/issues-summary.yml b/.github/workflows/issues-summary.yml index 40e8c729099c..d10a744879d5 100644 --- a/.github/workflows/issues-summary.yml +++ b/.github/workflows/issues-summary.yml @@ -10,20 +10,20 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.x' + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install requests + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install requests - - name: Run summary script - run: python scripts/generate_summary.py - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Run summary script + run: python scripts/generate_summary.py + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}