From 067d0f46927c6abd2489dc527649f3830bc4351c Mon Sep 17 00:00:00 2001 From: Nicholas White <106857076+TheRealFalseReality@users.noreply.github.com> Date: Mon, 25 Nov 2024 20:53:59 -0500 Subject: [PATCH] Add files via upload --- .github/workflows/repository-generated.yml | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/repository-generated.yml diff --git a/.github/workflows/repository-generated.yml b/.github/workflows/repository-generated.yml new file mode 100644 index 0000000..bdf28c1 --- /dev/null +++ b/.github/workflows/repository-generated.yml @@ -0,0 +1,37 @@ +name: Repository Generated + +on: + push: + branches: + - main + +jobs: + setup: + runs-on: ubuntu-latest + if: ${{ !github.event.repository.is_template }} + permissions: + issues: write + contents: write + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Create issue from setup checklist template + uses: peter-evans/create-issue-from-file@v5 + with: + title: Setup Checklist + content-filepath: _template/setup-checklist.md + assignees: ${{ github.repository_owner }} + + - name: Delete self + run: rm -rf .github/workflows/repository-generated.yml + - name: Remove template directory + run: rm -rf _template + + - name: Commit changes + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "Remove template files" + git push