Skip to content

Commit 3898ee7

Browse files
authored
Merge pull request #58 from OneSignal/cd_update
add project workflow
2 parents 5fb1697 + bd6fee0 commit 3898ee7

File tree

8 files changed

+28
-1029
lines changed

8 files changed

+28
-1029
lines changed

.github/ISSUE_TEMPLATE/ask-question.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: 🙋‍♂️ Ask a question
22
description: Tell us what's on your mind
3-
title: "[Question]: "
4-
labels: ["triage"]
5-
assignees:
6-
- OneSignal/eng-developer-sdk
3+
title: '[Question]: '
4+
labels: ['Question']
5+
76
body:
87
- type: markdown
98
attributes:

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: 🪳 Bug report
22
description: File a bug report
3-
title: "[Bug]: "
4-
labels: ["bug", "triage"]
5-
assignees:
6-
- OneSignal/eng-developer-sdk
3+
title: '[Bug]: '
4+
labels: ['Bug']
5+
76
body:
87
- type: markdown
98
attributes:
@@ -67,4 +66,3 @@ body:
6766
label: Relevant log output
6867
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
6968
render: Shell
70-

.github/ISSUE_TEMPLATE/general-feedback.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: 📣 General feedback
22
description: Tell us what's on your mind
3-
title: "[Feedback]: "
4-
labels: ["triage"]
5-
assignees:
6-
- OneSignal/eng-developer-sdk
3+
title: '[Feedback]: '
4+
labels: ['Feedback']
5+
76
body:
87
- type: markdown
98
attributes:

.github/workflows/project.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Add issues to project
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
8+
jobs:
9+
add-to-project:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Add issue to project
13+
uses: actions/[email protected]
14+
with:
15+
# SDK Web Project
16+
project-url: https://github.com/orgs/OneSignal/projects/9
17+
github-token: ${{ secrets.GH_PROJECTS_TOKEN }}

0 commit comments

Comments
 (0)