We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
create-tag
1 parent 08f721c commit bff68e2Copy full SHA for bff68e2
.github/workflows/create-tag.yml
@@ -13,11 +13,11 @@ on:
13
jobs:
14
create-tag:
15
if: >-
16
- (inputs.commit || false) &&
17
- github.event.pull_request.merged == true &&
18
- github.event.pull_request.user.login == 'github-actions' &&
19
- github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name &&
20
- startsWith(github.event.pull_request.head.ref, 'bump-version')
+ (inputs.commit || false) ||
+ (github.event.pull_request.merged == true &&
+ github.event.pull_request.user.login == 'github-actions' &&
+ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name &&
+ startsWith(github.event.pull_request.head.ref, 'bump-version') )
21
runs-on: ubuntu-latest
22
steps:
23
- name: Checkout code
0 commit comments