Skip to content

Commit

Permalink
Merge pull request #6338 from Artturin/labeler
Browse files Browse the repository at this point in the history
add labeler workflow
  • Loading branch information
fricklerhandwerk authored Mar 13, 2023
2 parents d37b8a2 + 9667516 commit 4a96125
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"documentation":
- doc/manual/*
- src/nix/**/*.md

"tests":
- tests/**/*
24 changes: 24 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Label PR"

on:
pull_request_target:
types: [edited, opened, synchronize, reopened]

# WARNING:
# When extending this action, be aware that $GITHUB_TOKEN allows some write
# access to the GitHub API. This means that it should not evaluate user input in
# a way that allows code injection.

permissions:
contents: read
pull-requests: write

jobs:
labels:
runs-on: ubuntu-latest
if: github.repository_owner == 'NixOS'
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true

0 comments on commit 4a96125

Please sign in to comment.