-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
170647c
commit 3b5a240
Showing
5 changed files
with
725 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
name: 🐧🧹 HealthChecks 🖳🗑️ | ||
#MAX_RUNTIME: 02 Minutes */10 * * * * | ||
|
||
on: | ||
#push: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "45 02 * * *" # 02:45 AM UTC --> 08:30 AM Morning NPT | ||
|
||
env: | ||
RCLONE_CF_R2_PUB: "${{ secrets.RCLONE_CF_R2_PUB }}" | ||
#------------------------------------------------------------------------------------# | ||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
path: main | ||
filter: "blob:none" #https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ | ||
|
||
- name: Setup ENV | ||
run: | | ||
#presets | ||
set +x ; set +e | ||
#-------------# | ||
#tmp | ||
SYSTMP="$(dirname $(mktemp -u))" && export SYSTMP="$SYSTMP" | ||
echo "SYSTMP=$SYSTMP" >> "$GITHUB_ENV" | ||
##Setup rClone | ||
mkdir -p "$HOME/.config/rclone" | ||
echo "${{ secrets.RCLONE_CF_R2_PUB }}" > "$HOME/.config/rclone/rclone.conf" | ||
export RCLONE_STATS="120s" ; echo "RCLONE_STATS=$RCLONE_STATS" >> "$GITHUB_ENV" | ||
##User-Agent | ||
USER_AGENT="$(curl -qfsSL 'https://pub.ajam.dev/repos/Azathothas/Wordlists/Misc/User-Agents/ua_chrome_macos_latest.txt')" && export USER_AGENT="$USER_AGENT" | ||
echo "USER_AGENT=$USER_AGENT" >> "$GITHUB_ENV" | ||
continue-on-error: true | ||
|
||
- name: Install Addons | ||
run: | | ||
#presets | ||
set +x ; set +e | ||
#-------------# | ||
bash <(curl -qfsSL "https://pub.ajam.dev/repos/Azathothas/Arsenal/misc/Linux/install_bb_tools.sh") | ||
continue-on-error: true | ||
|
||
- name: Dos2Unix Everything | ||
run: | | ||
#Presets | ||
set +x ; set +e | ||
#--------------# | ||
cd "$GITHUB_WORKSPACE/main" | ||
find . -type f ! -path "./.git/*" -exec dos2unix {} \; 2>/dev/null | ||
continue-on-error: true | ||
|
||
- name: ActionLint | ||
run: | | ||
#Presets | ||
set +x ; set +e | ||
#--------------# | ||
cd "$GITHUB_WORKSPACE/main" | ||
find ".github/workflows" -type f -name "*ml" -exec actionlint {} \; | ||
continue-on-error: true | ||
|
||
- name: Generate Repo Metadata (git-sizer) | ||
run: | | ||
#Presets | ||
set +x ; set +e | ||
#--------------# | ||
cd "$GITHUB_WORKSPACE/main" | ||
#Dust sizes | ||
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: Ensure Healthy Commit Nums (RESET ON >= 1000) | ||
run: | | ||
#Presets | ||
set +x ; set +e | ||
#--------------# | ||
pushd "$(mktemp -d)" > /dev/null 2>&1 && git clone --filter="blob:none" "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" | ||
cd "$(find . -maxdepth 1 -type d -exec basename {} \; | grep -Ev '^\.$' | xargs -I {} realpath {})" | ||
CLONED_DIR="$(realpath .)" && export CLONED_DIR="$CLONED_DIR" | ||
COMMIT_NUMS="$(git rev-list --count HEAD)" && export COMMIT_NUMS="$COMMIT_NUMS" | ||
popd > /dev/null 2>&1 ; rm -rf "$CLONED_DIR" 2>/dev/null | ||
cd "$GITHUB_WORKSPACE/main" | ||
if [ "$COMMIT_NUMS" -gt 1000 ]; then | ||
echo -e "\n[+] Total number of commits exceeds 1000. ($COMMIT_NUMS)\n" | ||
cd "$GITHUB_WORKSPACE/main" | ||
git config "user.name" "Azathothas" | ||
git config "user.email" "[email protected]" | ||
git checkout --orphan temp | ||
git add --all --verbose && git commit -m "Purge (Re:Init)" | ||
git branch -D "main" | ||
git branch -m "main" | ||
git push --set-upstream origin main --force | ||
echo "RESET_HISTORY=YES" >> "$GITHUB_ENV" | ||
else | ||
echo -e "\n[+] Total number of commits looks healthy. ($COMMIT_NUMS)\n" | ||
echo "RESET_HISTORY=NO" >> "$GITHUB_ENV" | ||
fi | ||
pushd "$GITHUB_WORKSPACE/main" >/dev/null 2>&1 && git pull origin main && popd >/dev/null 2>&1 | ||
continue-on-error: true | ||
|
||
- name: Get DateTime | ||
run: | | ||
# Date Time | ||
NEPALI_TIME=$(TZ='Asia/Kathmandu' date +'%Y-%m-%d (%I:%M:%S %p)') | ||
echo "NEPALI_TIME=$NEPALI_TIME" >> $GITHUB_ENV | ||
continue-on-error: true | ||
|
||
- name: Git Pull | ||
run: | | ||
cd "$GITHUB_WORKSPACE/main" && git pull origin main | ||
continue-on-error: true | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
repository: ./main | ||
commit_user_name: Azathothas # defaults to "github-actions[bot]" | ||
commit_user_email: [email protected] # defaults to "41898282+github-actions[bot]@users.noreply.github.com" | ||
commit_message: "✅ 🐧🧹 🖳🗑️" | ||
#push_options: '--force' | ||
continue-on-error: true | ||
#------------------------------------------------------------------------------------# | ||
- name: rClone BackUp Repo ("https://pub.ajam.dev/repos/$GITHUB_REPOSITORY") | ||
run: | | ||
# Presets | ||
set -x ; set +e | ||
#--------------# | ||
#touch "$HOME/.rclone.conf" | ||
echo "${{ secrets.RCLONE_CF_R2_PUB }}" > "$HOME/.rclone.conf" | ||
#chdir to Repo | ||
cd "$GITHUB_WORKSPACE/main" | ||
#Git pull | ||
git pull origin main --no-edit 2>/dev/null | ||
#Del Bloat | ||
rm -rf "$(pwd)/.git" | ||
#Upload to Pub | ||
echo -e "[+] Syncing $GITHUB_REPOSITORY to pub.ajam.dev/repos/$GITHUB_REPOSITORY \n" | ||
rclone sync "." "r2:/pub/repos/$GITHUB_REPOSITORY/" --user-agent="$USER_AGENT" --buffer-size="100M" --s3-upload-concurrency="500" --s3-chunk-size="100M" --multi-thread-streams="500" --checkers="2000" --transfers="1000" --check-first --checksum --copy-links --fast-list --progress | ||
continue-on-error: true | ||
#EOF | ||
#------------------------------------------------------------------------------------# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
# user specific | ||
#src/config.ts | ||
#wrangler.toml | ||
|
||
# Logs | ||
|
||
logs | ||
_.log | ||
npm-debug.log_ | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.pnpm-debug.log* | ||
|
||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
|
||
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json | ||
|
||
# Runtime data | ||
|
||
pids | ||
_.pid | ||
_.seed | ||
\*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
|
||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
|
||
coverage | ||
\*.lcov | ||
|
||
# nyc test coverage | ||
|
||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
|
||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
|
||
bower_components | ||
|
||
# node-waf configuration | ||
|
||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
|
||
build/Release | ||
|
||
# Dependency directories | ||
|
||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Snowpack dependency directory (https://snowpack.dev/) | ||
|
||
web_modules/ | ||
|
||
# TypeScript cache | ||
|
||
\*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
|
||
.npm | ||
|
||
# Optional eslint cache | ||
|
||
.eslintcache | ||
|
||
# Optional stylelint cache | ||
|
||
.stylelintcache | ||
|
||
# Microbundle cache | ||
|
||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
|
||
# Optional REPL history | ||
|
||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
|
||
\*.tgz | ||
|
||
# Yarn Integrity file | ||
|
||
.yarn-integrity | ||
|
||
# dotenv environment variable files | ||
|
||
.env | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.env.local | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
|
||
.cache | ||
.parcel-cache | ||
|
||
# Next.js build output | ||
|
||
.next | ||
out | ||
|
||
# Nuxt.js build / generate output | ||
|
||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
|
||
.cache/ | ||
|
||
# Comment in the public line in if your project uses Gatsby and not Next.js | ||
|
||
# https://nextjs.org/blog/next-9-1#public-directory-support | ||
|
||
# public | ||
|
||
# vuepress build output | ||
|
||
.vuepress/dist | ||
|
||
# vuepress v2.x temp and cache directory | ||
|
||
.temp | ||
.cache | ||
|
||
# Docusaurus cache and generated files | ||
|
||
.docusaurus | ||
|
||
# Serverless directories | ||
|
||
.serverless/ | ||
|
||
# FuseBox cache | ||
|
||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
|
||
.dynamodb/ | ||
|
||
# TernJS port file | ||
|
||
.tern-port | ||
|
||
# Stores VSCode versions used for testing VSCode extensions | ||
|
||
.vscode-test | ||
|
||
# yarn v2 | ||
|
||
.yarn/cache | ||
.yarn/unplugged | ||
.yarn/build-state.yml | ||
.yarn/install-state.gz | ||
.pnp.\* | ||
|
||
# wrangler project | ||
|
||
.dev.vars | ||
.wrangler/ |
Oops, something went wrong.