docs: remove empty commit spam and restore history #30
This file contains hidden or 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: Create Wave Issues | |
| on: | |
| push: | |
| branches: [ main ] | |
| permissions: | |
| issues: write | |
| jobs: | |
| create-issues: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Wave issues via REST API | |
| env: | |
| REPO: ${{ github.repository }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| python scripts/create-wave-issues.py |