Skip to content

Commit 54c0b39

Browse files
authored
Merge pull request #786 from OneSignal/fg/project-workflow
Add projects workflow
2 parents 25d1bbb + 2a54551 commit 54c0b39

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: 🪳 Bug report
22
description: File a bug report
33
title: "[Bug]: "
4-
labels: ["bug", "triage"]
5-
# assignees:
6-
# - onesignal/unity
4+
labels: ["Bug"]
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+
on:
3+
issues:
4+
types:
5+
- opened
6+
7+
jobs:
8+
add-to-project:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Add issue to project
12+
uses: actions/[email protected]
13+
with:
14+
# SDK Cross-Platform Project
15+
project-url: https://github.com/orgs/OneSignal/projects/10
16+
github-token: ${{ secrets.GH_PROJECTS_TOKEN }}
17+
labeled: Bug

0 commit comments

Comments
 (0)