Noba there is no way you messed up that bad. #14
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
name: Initialize Template Repository | |
on: | |
- push | |
permissions: | |
contents: write | |
jobs: | |
cleanup: | |
name: Initialize Repository | |
runs-on: ubuntu-latest | |
if: github.event.repository.name != 'FabricModTemplate' | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Make make-my-own.sh Executable | |
run: chmod +x make-my-own.sh | |
- name: Initialize Repository | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
owner=$(echo $GITHUB_REPOSITORY | cut -d/ -f1 | tr '[:upper:]' '[:lower:]') | |
name=$(echo $GITHUB_REPOSITORY | cut -d/ -f2 | tr '[:upper:]' '[:lower:]' | tr -d "-" | tr -d ".") | |
pack_name="me.${owner,,}.${name,,}" | |
proj_name="$(echo $GITHUB_REPOSITORY | cut -d/ -f2)" | |
modid="$(echo $name | sed 's/[^a-z]//g')" | |
./make-my-own.sh "$owner" "$pack_name" "$proj_name" "$modid" | |
git add . | |
git commit -F- <<EOF | |
Initialize Repository | |
Set project owner to $project_owner | |
Set package name to $pack_name | |
Set project name to $proj_name | |
Set modid to $modid | |
EOF | |
- name: Push Changes | |
uses: ad-m/[email protected] | |
with: | |
branch: ${{ github.ref }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} |