We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8b5f3 commit 6680988Copy full SHA for 6680988
.github/workflows/release.yml renamed to .github/workflows/create-releases.yml
@@ -1,4 +1,4 @@
1
-name: Release
+name: Create releases
2
on:
3
push:
4
branches:
.github/workflows/open-release-prs.yml
@@ -0,0 +1,21 @@
+name: Open release PRs
+on:
+ push:
+ branches:
5
+ - next
6
+
7
+jobs:
8
+ release:
9
+ name: release
10
+ if: github.ref == 'refs/heads/next' && github.repository == 'Finch-API/finch-api-python'
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - uses: stainless-api/trigger-release-please@v1
17
+ id: release
18
+ with:
19
+ repo: ${{ github.event.repository.full_name }}
20
+ stainless-api-key: ${{ secrets.STAINLESS_API_KEY }}
21
+ branch-with-changes: next
0 commit comments