We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25d1bbb + 2a54551 commit 54c0b39Copy full SHA for 54c0b39
.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/[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