We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3a0c0e commit bb39b6aCopy full SHA for bb39b6a
.github/workflows/regenerate-openapi-pr.yml
@@ -76,7 +76,7 @@ jobs:
76
exit 0
77
fi
78
79
- git commit -m "chore: regenerate client from OpenAPI"
+ git commit -m "fix: regenerate client from OpenAPI"
80
git push https://x-access-token:${PAT_TOKEN}@github.com/${GITHUB_REPOSITORY}.git "$BRANCH"
81
82
echo "pr_required=true" >> "$GITHUB_OUTPUT"
.github/workflows/release.yaml
@@ -0,0 +1,13 @@
1
+name: release-please
2
+on:
3
+ push:
4
+ branches: [ main ]
5
+jobs:
6
+ release:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: google-github-actions/release-please-action@v3
11
+ with:
12
+ token: ${{ secrets.PAT_TOKEN }}
13
+ release-type: simple
0 commit comments