From 0c6e73349974724b59918c78a2c33b18dd5cc708 Mon Sep 17 00:00:00 2001 From: k1LoW Date: Sun, 9 Oct 2022 16:59:01 +0900 Subject: [PATCH] Use tagpr --- .github/workflows/tagpr.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/tagpr.yml diff --git a/.github/workflows/tagpr.yml b/.github/workflows/tagpr.yml new file mode 100644 index 0000000..ea5b9ef --- /dev/null +++ b/.github/workflows/tagpr.yml @@ -0,0 +1,20 @@ +name: tagpr +on: + push: + branches: + - main + +jobs: + tagpr: + runs-on: ubuntu-latest + outputs: + tagpr-tag: ${{ steps.run-tagpr.outputs.tag }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - name: Check out source code + uses: actions/checkout@v3 + + - id: run-tagpr + name: Run tagpr + uses: Songmu/tagpr@v1