We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b46e8 commit c024f09Copy full SHA for c024f09
1 file changed
.github/workflows/release.yml
@@ -1,14 +1,16 @@
1
name: Releases
2
on:
3
- pull_request_target:
+ push:
4
branches:
5
- main
6
- types:
7
- - closed
8
9
jobs:
10
merged-pr:
11
- if: github.event.pull_request.merged == true && !contains(github.event.pull_request.title, '[skip ci]')
+ if: |
+ github.ref == 'refs/heads/main' &&
+ !contains(github.actor, 'bot') &&
12
+ !contains(github.event.head_commit.message, '[skip ci]')
13
+
14
runs-on: ubuntu-latest
15
permissions:
16
id-token: write
0 commit comments