github.com/safing/portbase@v0.19.5/.github/workflows/issues-label-actions.yml (about)

     1  # This workflow responds with a message when certain labels are added to an issue or PR.
     2  # Docs: https://github.com/dessant/label-actions
     3  name: Label Actions
     4  
     5  # This workflow is triggered when a label is added to an issue.
     6  on:
     7    issues:
     8      types: labeled
     9  
    10  permissions:
    11    contents: read
    12    issues: write
    13  
    14  jobs:
    15    action:
    16      runs-on: ubuntu-latest
    17      steps:
    18        - uses: dessant/label-actions@v3
    19          with:
    20            github-token: ${{ secrets.GITHUB_TOKEN }}
    21            config-path: ".github/label-actions.yml"
    22            process-only: "issues"