Fix GitHub issue creation workflow and add create-wave-issues script #2
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 |