We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25d1bbb commit 2a54551Copy full SHA for 2a54551
.github/ISSUE_TEMPLATE/bug-report.yml
@@ -1,9 +1,8 @@
1
name: 🪳 Bug report
2
description: File a bug report
3
title: "[Bug]: "
4
-labels: ["bug", "triage"]
5
-# assignees:
6
-# - onesignal/unity
+labels: ["Bug"]
+
7
body:
8
- type: markdown
9
attributes:
.github/workflows/project.yml
@@ -0,0 +1,17 @@
+name: Add issues to project
+on:
+ issues:
+ types:
+ - opened
+jobs:
+ add-to-project:
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Add issue to project
12
+ uses: actions/add-to-project@v1.0.2
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