Skip to content

Commit

Permalink
add labeler workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin committed Mar 8, 2023
1 parent e8415dc commit 2d2c385
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# if a label exists in nixpkgs then use that instead of making a new one

"8.has: changelog":
- /doc/manual/src/release-notes/*

"8.has: documentation":
- doc/manual/*
- src/nix/**/*.md

# does not exist in nixpkgs
"8.has: test":
- 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 == 'nix'
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true

0 comments on commit 2d2c385

Please sign in to comment.