mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 01:28:26 -05:00
Add action for responding to Needs Logs label (#13707)
This commit is contained in:
2
.github/respond-to-issue-based-on-label.yml
vendored
Normal file
2
.github/respond-to-issue-based-on-label.yml
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
needs logs:
|
||||
comment: "We need more info to debug your particular issue. If you could attach your logs to the issue (ensure no private data is in them), it would help us fix the issue much faster.\n\nTo find your logs:\n\n- Open command palette (Click **View** -> **Command Palette**)\n- Run the command: **`Developer: Open Logs Folder`**\n\nThis will open the log file locally. Please zip up this folder and attach it to the issue."
|
||||
15
.github/workflows/on-label.yml
vendored
Normal file
15
.github/workflows/on-label.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: On Issue Open
|
||||
on:
|
||||
issues:
|
||||
types: [labeled]
|
||||
|
||||
jobs:
|
||||
processLabelAction:
|
||||
name: Process Label Action
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Process Label Action
|
||||
uses: hramos/label-actions@v1
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user