Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
wjfu99 committed Aug 20, 2024
1 parent d691f19 commit 99cf1d6
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Clean Commit History

on: workflow_dispatch


jobs:
clean_history:
runs-on: ubuntu-latest

steps:
- name: Checkout the repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Remove commit history
run: |
# Set up Git user
git config --global user.name "Wenjie Fu"
git config --global user.email "[email protected]"
git branch
ls
# Create a new orphan branch with the latest commit
git checkout --orphan latest_commit
# Add all files to the new branch
git add -A
# Commit the changes
git commit -m "Final Commit"
# Rename the current branch to main
git branch -m latest_commit
# Force push to update the repository
git push -f origin latest_commit:main

0 comments on commit 99cf1d6

Please sign in to comment.