mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
This reverts commit 30f4a3554a.
This commit is contained in:
32
.github/workflows/cleanup-stale-issues.yml
vendored
32
.github/workflows/cleanup-stale-issues.yml
vendored
@@ -1,32 +0,0 @@
|
||||
name: Close old issues that need reply
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Close old issues labeled 'Need logs' that need reply.
|
||||
uses: dwieeb/needs-reply@v2
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
issue-label: Needs Logs
|
||||
days-before-close: 7
|
||||
close-comment: "This issue hasn't had any recent activity and we are marking it as closed. If you are still experiencing this issue, please reopen this issue"
|
||||
- name: Close old issues labeled 'Need Logs - Azure ' that need reply.
|
||||
uses: dwieeb/needs-reply@v2
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
issue-label: Needs Logs - Azure
|
||||
days-before-close: 7
|
||||
close-comment: "This issue hasn't had any recent activity and we are marking it as closed. If you are still experiencing this issue, please reopen this issue"
|
||||
- name: Close old issues labeled 'Need More Info' that need reply.
|
||||
uses: dwieeb/needs-reply@v2
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
issue-label: Needs More Info
|
||||
days-before-close: 7
|
||||
close-comment: "This issue hasn't had any recent activity and we are marking it as closed. If you are still experiencing this issue, please reopen this issue"
|
||||
|
||||
26
.github/workflows/on-issue-comment.yml
vendored
26
.github/workflows/on-issue-comment.yml
vendored
@@ -1,26 +0,0 @@
|
||||
name: On issue comment
|
||||
on:
|
||||
issue_comment:
|
||||
types:
|
||||
- created
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: |
|
||||
github.event.comment.author_association != 'OWNER' &&
|
||||
github.event.comment.author_association != 'COLLABORATOR'
|
||||
steps:
|
||||
- name: Remove needs-reply label
|
||||
uses: octokit/request-action@v2.x
|
||||
continue-on-error: true
|
||||
with:
|
||||
route: DELETE /repos/:repository/issues/:issue/labels/:label
|
||||
repository: ${{ github.repository }}
|
||||
issue: ${{ github.event.issue.number }}
|
||||
labels: |
|
||||
Needs Logs
|
||||
Needs Logs - Azure
|
||||
Needs More Info
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
Reference in New Issue
Block a user