We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579df25 commit da9576fCopy full SHA for da9576f
.github/workflows/release.yml
@@ -6,19 +6,15 @@
6
7
name: Release
8
on:
9
+ pull_request:
10
+ paths:
11
+ - '**/workflows/release.yml'
12
+
13
+ workflow_dispatch:
14
15
push:
- # Path filters are not evaluated for pushes to tags.
- # (source: https://help.github.com/en/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#onpushpull_requestpaths)
- # So this workflow is triggered in the following events:
- # - Release event: a SemVer tag, e.g. v1.0.0 or v1.0.0-alpha, is pushed
16
tags:
17
- 'v[0-9]+.[0-9]+.[0-9]+*'
- # OR
- # - Test event: this file is modified on a branch in the main repo containing `/actions/` in the name.
18
- branches:
19
- - '**/actions/**'
20
- paths:
21
- - '**/workflows/release.yml'
22
23
jobs:
24
build:
0 commit comments