-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 1.44 KB
/
add-to-project.yml
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
40
41
42
43
44
45
46
47
# OpenATO Issue Syncs
#
# Based on: https://github.com/actions/add-to-project
name: Add Issues to OpenATO Projects
on:
issues:
types:
- opened
- labeled
pull_request:
types:
- opened
- labeled
jobs:
add-issues-to-project:
name: Add Issues to Projects
runs-on: ubuntu-latest
steps:
- name: Add New Issues to Issues Project
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/OpenATO/projects/1
labeled: 🧚 Feature Request
label-operator: NOT
- name: Add Feature Requests to Roadmap
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/OpenATO/projects/4
labeled: 🧚 Feature Request
label-operator: OR
- name: Add Frontend to Frontend Project
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/OpenATO/projects/7
labeled: 🖼️ Front End
label-operator: OR
- name: Add Demo to Demo
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/OpenATO/projects/8
labeled: 🧑🏫 Demo
label-operator: OR