Skip to content

Commit e4d8d7a

Browse files
committed
add project workflow
1 parent 329a0aa commit e4d8d7a

2 files changed

Lines changed: 21 additions & 4 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 4 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:

.github/workflows/project.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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/add-to-project@v1.0.2
14+
with:
15+
# SDK Web Project
16+
project-url: https://github.com/orgs/OneSignal/projects/9
17+
github-token: ${{ secrets.GH_PROJECTS_TOKEN }}
18+
labeled: Bug

0 commit comments

Comments
 (0)