Skip to content

for further contact #29

for further contact

for further contact #29

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Add needs-triage label for new issues
on:
issues:
types:
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: echo "${{ toJson(github.event.issue.assignee) }}"
- run: echo "${{ toJson(github.event.issue.assignees) }}"
- run: echo "${{ github.event.issue.labels }}"
- name: Label issues
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90
if: "${{ github.event.issue.assignees == '[]' }}"
with:
add-labels: "needs-triage"
repo-token: ${{ secrets.GITHUB_TOKEN }}