diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2025-08-29 01:12:20 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2025-08-29 01:12:20 +0200 |
commit | e3f01682d77679397593656b741d98503ceb6d4b (patch) | |
tree | 4a0553a038dce28031a40628d2c75d6dd89973d2 | |
parent | 10a061ba9939961e88d98f590eaad4074c639123 (diff) | |
download | ffmpeg-e3f01682d77679397593656b741d98503ceb6d4b.tar.gz |
forgejo/labeler: react to 'labeled' action as well
-rw-r--r-- | .forgejo/labeler/labeler.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.forgejo/labeler/labeler.js b/.forgejo/labeler/labeler.js index b1c05787f0..b0c0898668 100644 --- a/.forgejo/labeler/labeler.js +++ b/.forgejo/labeler/labeler.js @@ -30,6 +30,7 @@ module.exports = async ({github, context}) => { (context.payload.action !== 'opened' && ( context.payload.action === 'assigned' || context.payload.action === 'label_updated' || + context.payload.action === 'labeled' || context.payload.comment) && await isOrgMember(context.payload.sender.login)) ) { |