Skip to content

Second pass

Second pass #7

Workflow file for this run

---
name: Initial Setup
on: push
permissions:
contents: write
jobs:
start:
runs-on: ubuntu-latest
if: github.repository != 'AlmaLinux/atomic-respin-template'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run initial setup script
run: |
rm -rf \
.github/README.md \
.github/workflows/initial_setup.yml
- name: Commit changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
git commit -a -m "Initial setup: remove template files"
git push