Skip to content

Commit

Permalink
Checking without WITH_V and without TAG_PREFIX option
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyclarke committed Sep 17, 2024
1 parent fddc990 commit 119b7a3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/branch_no_prefix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Branch no Prefix

on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- branch_no_prefix

jobs:
update-tags:
name: Tag update for Branch No Prefix
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Github Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Bump version and push tag
uses: timothyclarke/github-tag-action@a970082a7a44289bdaa93dfdc33110b94ff86ee1
# uses: anothrNick/github-tag-action@v1 # Don't use @master or @v1 unless you're happy to test the latest version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token
DEFAULT_BRANCH: branch_no_prefix
RELEASE_BRANCHES: branch_no_prefix
PRERELEASE: false
DEFAULT_BUMP: patch
BRANCH_HISTORY: last

0 comments on commit 119b7a3

Please # to comment.