diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-12-28 15:19:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 15:19:23 +0100 |
commit | ab11157808955c40880cc0efb05d2aa5a21c897a (patch) | |
tree | 5cbbb04ee39680c968f8fa9d47bf3e5bf8cf77a2 | |
parent | 3d0eca6b659f167b4339937aabe1349b25d220cd (diff) | |
download | rneovim-ab11157808955c40880cc0efb05d2aa5a21c897a.tar.gz rneovim-ab11157808955c40880cc0efb05d2aa5a21c897a.tar.bz2 rneovim-ab11157808955c40880cc0efb05d2aa5a21c897a.zip |
ci: add platform:nix label when changing nix files (#21569)
Also update the reviewer list.
-rw-r--r-- | .github/labeler.yml | 4 | ||||
-rw-r--r-- | .github/scripts/reviews.js | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml index 34410651a8..ad48287246 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -64,3 +64,7 @@ "filetype": - runtime/lua/vim/filetype.lua - runtime/lua/vim/filetype/detect.lua + +"platform:nix": + - contrib/flake.lock + - contrib/flake.nix diff --git a/.github/scripts/reviews.js b/.github/scripts/reviews.js index ab81a61047..cc6aaa1e8b 100644 --- a/.github/scripts/reviews.js +++ b/.github/scripts/reviews.js @@ -60,6 +60,10 @@ module.exports = async ({github, context}) => { team_reviewers.push('lsp'); } + if (labels.includes('platform:nix')) { + reviewers.add("teto") + } + if (labels.includes('project-management')) { reviewers.add("bfredl") reviewers.add("justinmk") |