I have a Parent Tree and a Children Tree and As I Can set headers for Parent Tree I need to set headers for children tree is there a possible way to do so? A sample of what i want is show as below using TreeTable #1298
This file contains 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: Label To Issues and PRs | |
on: | |
issues: | |
types: [opened,reopened] | |
permissions: | |
contents: read | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Label issues | |
uses: andymckay/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
add-labels: 'Status: Needs Triage' | |
remove-labels: 'Resolution: By Design,Resolution: Cannot Replicate,Resolution: Duplicate,Resolution: Help Wanted,Resolution: Invalid,Resolution: Needs Issue,Resolution: Needs More Information,Resolution: Needs Revision,Resolution: Wontfix' |