We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6b3c59 commit 29fee15Copy full SHA for 29fee15
.github/workflows/release_please.yml
@@ -15,16 +15,10 @@ permissions:
15
16
jobs:
17
release-please:
18
- if: >
19
- github.event_name == 'push' ||
20
- (github.event_name == 'pull_request' && github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'chore(release):'))
+ if: github.event_name != 'pull_request' || (github.event.pull_request.merged && github.event.pull_request.head.ref !~ 'release-please/.*')
21
runs-on: ubuntu-latest
22
steps:
23
- uses: google-github-actions/release-please-action@v3
24
with:
25
command: manifest
26
token: ${{ secrets.OG_BOT_TOKEN }}
27
- release-type: dart
28
- bump-minor-pre-major: false
29
- bump-patch-for-minor-pre-major: false
30
- version-file: "changelog-only"
0 commit comments