From 84ff07e3be9510db424fbb322fccde170a210c0f Mon Sep 17 00:00:00 2001 From: Sion Kang <31057849+Yaminyam@users.noreply.github.com> Date: Wed, 24 Aug 2022 16:30:13 +0900 Subject: [PATCH] Create README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2bc107f --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# auto-label-in-issue + +## Usage + +```yml +# .github/workflows/auto-label.yml +name: 'Auto Label' + +on: + pull_request: + types: [labeled, unlabeled, opened, synchronize, reopened] + +permissions: + pull-requests: write + +jobs: + auto-label: + runs-on: ubuntu-latest + steps: + - uses: Yaminyam/auto-label-in-issue@1.0.0 +```