We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bbfce93 + 6272ad9 commit e11c8bdCopy full SHA for e11c8bd
1 file changed
.github/workflows/tagpr.yml
@@ -4,15 +4,21 @@ on:
4
push:
5
branches:
6
- main
7
+ workflow_dispatch:
8
9
permissions:
10
contents: write
11
pull-requests: write
12
13
+concurrency:
14
+ group: ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress: false
16
+
17
jobs:
18
tagpr:
19
name: Tag and Release PR
20
runs-on: ubuntu-latest
21
+ timeout-minutes: 10
22
outputs:
23
tagpr-tag: ${{ steps.tagpr.outputs.tag }}
24
steps:
0 commit comments