Skip to content

Commit 34987ab

Browse files
ci: auto-add new issues/PRs to master roadmap #35 (pilot) (#576)
Pilot wiring for the per-repo → master roadmap (#35) automation. Adds `.github/workflows/add-to-roadmap.yml` using `actions/add-to-project@v1.0.2`. New issues/PRs in this repo will be auto-added to https://github.com/users/hyperpolymath/projects/35. **Draft — do not merge until** the repo secret `ADD_TO_PROJECT_PAT` exists (fine-grained PAT, Projects read+write). The workflow won't run on this PR (pull_request_target uses the base-branch copy). Part of the estate boards epic (tracked on roadmap #35).
1 parent 10aa2c7 commit 34987ab

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
# Auto-add new issues & PRs to the Hyperpolymath Master Roadmap (project #35).
3+
# Pilot wiring (2026-06-13). Requires repo secret ADD_TO_PROJECT_PAT:
4+
# a fine-grained PAT with Projects (read+write) on the hyperpolymath account.
5+
name: Add to roadmap 35
6+
on:
7+
issues:
8+
types: [opened, reopened, transferred]
9+
pull_request_target:
10+
types: [opened, reopened]
11+
permissions: {}
12+
jobs:
13+
add-to-project:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/add-to-project@v1.0.2
17+
with:
18+
project-url: https://github.com/users/hyperpolymath/projects/35
19+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)