We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10aa2c7 commit 8213738Copy full SHA for 8213738
1 file changed
.github/workflows/add-to-roadmap.yml
@@ -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