Skip to content

Commit

Permalink
Add new workflow to enable automated comments and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh committed Aug 8, 2024
1 parent 4ab851c commit 2b8afc6
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/labal-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
'needs-discussion':
unlabel:
- 'bug'
- 'triage'
comment: >
**Please create a GitHub Discussion instead of this issue.**
As this issue has been labeled as `needs-discussion` by a maintainer it is being automatically closed and locked. It will later be deleted to avoid polluting repository searches with duplicate or incorrect content.
This doesn't necessarily mean that what you've reported isn't a problem or a reasonable idea, but it does mean that it should be raised as a Discussion first and not an Issue. Please create a Discussion now, assuming you still wish to discuss it.
Thanks, Azure DevOps Migration Tools team
close: true
lock: true
lock-reason: 'resolved'


'needs-code-formatting':
comment: >
Hi, you need to format code or logs here so that they're more readable for others.
You can find a Markdown code formatting guide [here](https://www.markdownguide.org/basic-syntax/#code) as well as some GitHub-specific information formatting code blocks [here](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
Thanks, Azure DevOps Migration Tools team
'retry-latest-version':
comment: >
Hi there,
You're reporting a problem with an old version of the Azure DevOps Migration Tools.
Please try the latest version and tell us if that fixes your problem.
Good luck,
Thanks, Azure DevOps Migration Tools team
27 changes: 27 additions & 0 deletions .github/workflows/labal-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 'Label Actions'

on:
issues:
types: [labeled]
discussion:
types: [labeled]
pull_request_target:
types: [labeled, unlabeled]

permissions:
contents: read
issues: write
discussions: write

jobs:
reaction:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.NKDAGILITY_BOT_APP_ID }}
private-key: ${{ secrets.NKDAGILITY_BOT_CLIENTSECRET }}
- uses: dessant/label-actions@v4
with:
github-token: ${{ steps.app-token.outputs.token }}

0 comments on commit 2b8afc6

Please sign in to comment.