From faa50ce37f21f874eff611058fad46a4a02b81e7 Mon Sep 17 00:00:00 2001 From: Lisi Linhart Date: Fri, 29 Sep 2023 15:22:00 +0200 Subject: [PATCH] chore: update readme --- README.md | 18 +++++++++++++----- package.json | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c6b11c5..384ba7e 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,19 @@ It will default to `.github/emoji-labels.yml` if not other path is specified. ## Configuration ```yaml - - name: Prefix Emoji to PR Title - uses: lisilinhart/emoji-pr-title@v0.0.6 - with: - token: ${{ secrets.GITHUB_TOKEN }} -# config_path: '.github/my-labels.yml' (optional) +name: PR Title Emoji + +on: pull_request + +jobs: + stats: + runs-on: ubuntu-latest + steps: + - name: Prefix Emoji to PR Title + uses: lisilinhart/emoji-pr-title@v0.0.7 + with: + token: ${{ secrets.GITHUB_TOKEN }} + # config_path: '.github/my-labels.yml' (optional) ``` ## Usage diff --git a/package.json b/package.json index 3fccaf2..ab3d08a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "emoji-title-action", "description": "GitHub Actions for prefixing a title with an emojis", - "version": "0.0.6", + "version": "0.0.7", "author": "", "private": true, "homepage": "https://github.com/lisilinhart/emoji-pr-title#readme",