Functional Requirement Specification: Tree Drag and Drop Feature #1033
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Workflow Labeling | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| comment-workflow: | |
| if: ${{ github.repository == 'siemens/ix' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| # Useful if we try to also integrate other labels | |
| # - name: Find comments | |
| # id: find_comments | |
| # uses: actions-cool/issues-helper@v3 | |
| # with: | |
| # actions: 'find-comments' | |
| # token: ${{ secrets.GITHUB_TOKEN }} | |
| # issue-number: ${{ github.event.issue.number }} | |
| # comment-auth: 'github-actions[bot]' | |
| # body-includes: '🤖 Hello ' | |
| # - uses: actions/github-script@v7 | |
| # id: filter-comment | |
| # env: | |
| # COMMENTS_RESULT: ${{ steps.find_comments.outputs.comments }} | |
| # with: | |
| # script: | | |
| # const { COMMENTS_RESULT } = process.env; | |
| # const comments = JSON.parse(COMMENTS_RESULT); | |
| # if (comments.length === 1) { | |
| # return comments[0].id; | |
| # } | |
| # return ''; | |
| # result-encoding: string | |
| - name: Jira Ticket created | |
| if: "contains(github.event.label.name, 'Backlog')" | |
| uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e | |
| with: | |
| actions: 'create-comment' | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| body: | | |
| 🤖 Hello @${{ github.event.issue.user.login }} | |
| Your issue will be analyzed and is part of our internal workflow. | |
| To get informed about our workflow please checkout the [Contributing Guidelines](https://github.com/siemens/ix/blob/main/CONTRIBUTING.md#issue-workflow) | |
| JIRA: IX-000 |