Generator does not run when targeting NET10 SDK #1
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: Add Issue to main Project | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| track_issue: | |
| runs-on: cg-linux | |
| steps: | |
| - name: Save actions cache | |
| uses: Catglobe/save-actions-cache@v1 | |
| # Generate token for GitHub app | |
| - name: Generate token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v1 | |
| with: | |
| app-id: 1008511 | |
| private-key: ${{ secrets.CG_ISSUE_PROCESSOR_TOKEN }} | |
| # Add the issue to the project | |
| - name: Add issue to project | |
| env: | |
| GH_TOKEN: ${{ steps.generate-token.outputs.token }} | |
| PROJECT_ID: 3 | |
| ISSUE_ID: ${{ github.event.issue.number }} | |
| run: | | |
| gh project item-add $PROJECT_ID --owner Catglobe --url https://github.com/$GITHUB_REPOSITORY/issues/$ISSUE_ID | |