From da11851aa44787daabed56b2109610778c906a46 Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Fri, 27 Feb 2026 22:16:37 +0000 Subject: [PATCH] Refactor update workflow to improve step formatting and remove redundant comments --- .gitea/workflows/update.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/update.yaml b/.gitea/workflows/update.yaml index 21e770b..136cf74 100644 --- a/.gitea/workflows/update.yaml +++ b/.gitea/workflows/update.yaml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-latest container: image: python:3.9-slim - steps: - - name: Checkout Code - uses: actions/checkout@v4 + steps: + - name: Checkout Code + uses: actions/checkout@v4 - # DELETE the "Set up Python" step entirely - - - name: Update README file - run: | - # Check if python3 is there, if not, install it quickly - which python3 || (sudo apt-get update && sudo apt-get install -y python3) - python3 update_profile.py \ No newline at end of file + # DELETE the "Set up Python" step entirely + + - name: Update README file + run: | + # Check if python3 is there, if not, install it quickly + which python3 || (sudo apt-get update && sudo apt-get install -y python3) + python3 update_profile.py \ No newline at end of file