Unverified Commit 1a53a38d authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

.github/labeler.yml: automatically add backport label for PRs touching `ci/` (#374921)

parents aedbfbb6 15b3e2d0
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
# This file is used by .github/workflows/labels.yml
# This version uses `sync-labels: false`, meaning that a non-match will NOT remove the label

"backport: release-24.11":
  - any:
    - changed-files:
      - any-glob-to-any-file:
        - .github/workflows/*
        - ci/**/*
        - "!ci/OWNERS"

"6.topic: policy discussion":
  - any:
    - changed-files:
      - any-glob-to-any-file:
        - .github/**/*
        - CONTRIBUTING.md
        - pkgs/README.md
        - nixos/README.md
        - maintainers/README.md
        - lib/README.md
        - doc/README.md

"8.has: documentation":
  - any:
    - changed-files:
      - any-glob-to-any-file:
        - doc/**/*
        - nixos/doc/**/*
+3 −19
Original line number Diff line number Diff line
# This file is used by .github/workflows/labels.yml
# This version uses `sync-labels: true`, meaning that a non-match will remove the label

# NOTE: bsd, darwin and cross-compilation labels are handled by ofborg
"6.topic: agda":
  - any:
@@ -387,18 +390,6 @@
        - pkgs/test/php/default.nix
        - pkgs/top-level/php-packages.nix

"6.topic: policy discussion":
  - any:
    - changed-files:
      - any-glob-to-any-file:
        - .github/**/*
        - CONTRIBUTING.md
        - pkgs/README.md
        - nixos/README.md
        - maintainers/README.md
        - lib/README.md
        - doc/README.md

"6.topic: printing":
  - any:
    - changed-files:
@@ -572,13 +563,6 @@
      - any-glob-to-any-file:
        - nixos/doc/manual/release-notes/**/*

"8.has: documentation":
  - any:
    - changed-files:
      - any-glob-to-any-file:
        - doc/**/*
        - nixos/doc/**/*

"8.has: module (update)":
  - any:
    - changed-files:
+6 −0
Original line number Diff line number Diff line
@@ -22,4 +22,10 @@ jobs:
      - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          configuration-path: .github/labeler.yml # default
          sync-labels: true
      - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          configuration-path: .github/labeler-no-sync.yml
          sync-labels: false