docs: add BUDGET.md — public operating budget + sponsor-influence firewall #23
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: Auto-assign PR | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, ready_for_review] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| assign: | |
| if: github.event.pull_request.assignees[0] == null | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Assign PR to DTTerastar | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| run: gh pr edit "$PR_URL" --add-assignee DTTerastar |