From 1b4d3aaa8b3f69ca70d0e1f92b933c1e081786fd Mon Sep 17 00:00:00 2001 From: Gleb Tcivie Date: Sat, 20 Jul 2024 17:14:26 +0300 Subject: [PATCH] Create auto-tagging.yml --- .github/workflows/auto-tagging.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/auto-tagging.yml diff --git a/.github/workflows/auto-tagging.yml b/.github/workflows/auto-tagging.yml new file mode 100644 index 0000000..6650125 --- /dev/null +++ b/.github/workflows/auto-tagging.yml @@ -0,0 +1,23 @@ +name: Auto Tagger + +on: + push: + branches: + - main + +jobs: + auto-tag: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Github PR Auto Tagger + uses: RueLaLa/auto-tagger@v2.1.3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_prefix: "v" + tag_suffix: ""