PunimTag Web Application - Major Feature Release #1

Open
tanyar09 wants to merge 106 commits from dev into master
Showing only changes of commit 2f6dae5f8c - Show all commits

View File

@ -10,7 +10,11 @@ on:
# Prevent duplicate runs when pushing to a branch with an open PR
# This ensures only one workflow runs at a time for the same branch/PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.pull_request.number || github.sha }}
# Group by workflow name and either PR number (for PRs) or branch name (for pushes)
# This prevents duplicate runs when both push and PR events fire for the same commit
# For PRs: uses PR number to group all runs for that PR
# For pushes: uses branch ref to group all runs for that branch
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: