-
-
Notifications
You must be signed in to change notification settings - Fork 151
39 lines (32 loc) · 875 Bytes
/
AddToRoadmap.yml
File metadata and controls
39 lines (32 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Automate Roadmap
on:
issues:
types:
- opened
pull_request:
branches:
- develop
jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: if_issue
if: github.event.issue
permissions: read-all|write-all
uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: SS3D Roadmap
column: Backlog
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: if_pr
if: github.event.pull_request
permissions: read-all|write-all
uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: SS3D Roadmap
column: In Progress
repo-token: ${{ secrets.GITHUB_TOKEN }}