Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/compress_firmware.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/update-about-mmc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Update About MMC Section
# This GitHub Action will update the About Makers Making Change section of the Readme.md
# from the Makers-Making-Change repository readme.

# It replace everything in the Readme.md file between the tags <!-- ABOUT MMC START --> and
# <!-- ABOUT MMC END -->

# It is triggered manually through the GitHub Actions in the repository.
# Last updated: 2025-Apr-08
on:
workflow_dispatch: # Enables manual trigger via the Actions tab

jobs:
update-about:
runs-on: ubuntu-latest

steps:
- name: Checkout this repo
uses: actions/checkout@v3

- name: Fetch shared About MMC section
run: |
curl -s https://raw.githubusercontent.com/makersmakingchange/Makers-Making-Change/refs/heads/main/ABOUT_MMC.md -o about.md

- name: Replace About MMC section in README
run: |
if [ ! -f README.md ]; then
echo "README.md not found!"
exit 1
fi

awk '
BEGIN { inside=0 }
/<!-- ABOUT MMC START -->/ {
print
system("cat about.md")
inside=1
next
}
/<!-- ABOUT MMC END -->/ {
inside=0
print
next
}
inside == 0 {
print
}
' README.md > temp.md

mv temp.md README.md

- name: Commit and push changes
run: |
git config user.name "github-actions"
git config user.email "github-actions@github.com"

git add README.md
git diff --cached --quiet || (git commit -m "Update About MMC Section" && git push)
Binary file removed Build_Files/3D_Printing_Files/2 LED Spacer.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/3 LED Spacer.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Base.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Battery Cover.stl
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Level Button.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Lid.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Play Button.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Record Button.stl
Binary file not shown.
Binary file removed Build_Files/3D_Printing_Files/Volume Knob.stl
Binary file not shown.
Binary file not shown.
Loading