Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create a pr for quais-docs instead of commit to main #232

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,18 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v4
with:
repository: quais-docs
branch: main
branch: ${{ needs.call-common-workflow.outputs.branch }}
create_branch: true
commit_user_name: ci-dominantstrategies
commit_user_email: [email protected]
env:
HUSKY: 0

- name: Create Pull Request
run: |
PR_BRANCH=${{ needs.call-common-workflow.outputs.branch }}
curl -u ci-dominantstrategies:${{ secrets.GH_PAT }} \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/dominant-strategies/quais-docs/pulls \
-d '{"title":"Update Documentation","head":"'"$PR_BRANCH"'","base":"main","body":"This PR updates the documentation."}'
Loading