From 5a11841a032128f01bfbc4170b88d5a7b889b5b8 Mon Sep 17 00:00:00 2001 From: Landy Date: Sun, 5 Sep 2021 18:15:03 +0800 Subject: [PATCH] Create action.yml --- action.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000000..16e71a8d1d --- /dev/null +++ b/action.yml @@ -0,0 +1,18 @@ +name: 'Labeler' +description: 'Automatically label new pull requests based on the paths of files being changed' +author: 'GitHub' +inputs: + repo-token: + description: 'The GITHUB_TOKEN secret' + configuration-path: + description: 'The path for the label configurations' + default: '.github/labeler.yml' + required: false + sync-labels: + description: 'Whether or not to remove labels when matching files are reverted' + default: false + required: false + +runs: + using: 'node12' + main: 'dist/index.js'