We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78430c6 commit 14ee27dCopy full SHA for 14ee27d
1 file changed
.github/workflows/publish.yml
@@ -76,8 +76,10 @@ jobs:
76
name: Release Publish
77
needs: [pre-ci, setup]
78
if: >
79
- !startsWith(github.event.head_commit.message, '[SKIP CI]')
80
- && startsWith(github.event.head_commit.message, '[release]')
+ (github.event_name == 'workflow_dispatch' || (
+ !startsWith(github.event.head_commit.message, '[SKIP CI]')
81
+ && startsWith(github.event.head_commit.message, '[release]')
82
+ ))
83
&& github.repository == 'subquery/subql-stellar'
84
runs-on: ubuntu-latest
85
steps:
0 commit comments