Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas authored Jan 23, 2024
1 parent 2be14ee commit 564c4d7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/healthchecks_housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
#Presets
set +x ; set +e
#--------------#
cd "$GITHUB_WORKSPACE/master"
cd "$GITHUB_WORKSPACE/main"
find . -type f ! -path "./.git/*" -exec dos2unix {} \; 2>/dev/null
continue-on-error: true

Expand All @@ -68,7 +68,7 @@ jobs:
#Presets
set +x ; set +e
#--------------#
cd "$GITHUB_WORKSPACE/master"
cd "$GITHUB_WORKSPACE/main"
find ".github/workflows" -type f -name "*ml" -exec actionlint {} \;
continue-on-error: true

Expand All @@ -77,12 +77,12 @@ jobs:
#Presets
set +x ; set +e
#--------------#
cd "$GITHUB_WORKSPACE/master"
cd "$GITHUB_WORKSPACE/main"
#Dust sizes
echo '```mathematica' > "$GITHUB_WORKSPACE/master/.github/SIZE.md"
dust -b -c -i -r -n 99999999 "$GITHUB_WORKSPACE/master" | tee -a "$GITHUB_WORKSPACE/master/.github/SIZE.md"
dust -b -c -i -r -n 99999999 "$GITHUB_WORKSPACE/master" | tee "$GITHUB_WORKSPACE/master/.github/SIZE.txt"
echo '```' >> "$GITHUB_WORKSPACE/master/.github/SIZE.md"
echo '```mathematica' > "$GITHUB_WORKSPACE/main/.github/SIZE.md"
dust -b -c -i -r -n 99999999 "$GITHUB_WORKSPACE/main" | tee -a "$GITHUB_WORKSPACE/main/.github/SIZE.md"
dust -b -c -i -r -n 99999999 "$GITHUB_WORKSPACE/main" | tee "$GITHUB_WORKSPACE/main/.github/SIZE.txt"
echo '```' >> "$GITHUB_WORKSPACE/main/.github/SIZE.md"
continue-on-error: true

- name: Get DateTime
Expand All @@ -94,7 +94,7 @@ jobs:

- name: Git Pull
run: |
cd "$GITHUB_WORKSPACE/master" && git pull origin main
cd "$GITHUB_WORKSPACE/main" && git pull origin main
continue-on-error: true

- uses: stefanzweifel/git-auto-commit-action@v5
Expand All @@ -114,7 +114,7 @@ jobs:
#touch "$HOME/.rclone.conf"
echo "${{ secrets.RCLONE_CF_R2_PUB }}" > "$HOME/.rclone.conf"
#chdir to Repo
cd "$GITHUB_WORKSPACE/master"
cd "$GITHUB_WORKSPACE/main"
#Git pull
git pull origin main --no-edit 2>/dev/null
#Del Bloat
Expand Down

0 comments on commit 564c4d7

Please sign in to comment.