Skip to content

Commit

Permalink
retry
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Dec 31, 2024
1 parent aefae99 commit c2cc0ac
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,19 @@ jobs:
id: date
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
- name: Create pull request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
title: "chore: API documentation sync"
body: Automated pull request to regenerate API docs for the deployment operator.
commit-message: Update docs for deployment operator
branch: docs-${{steps.date.outputs.date}}
labels: release
base: update-docs # TODO main
base: update-docs # TODO main
- name: Enable pull request auto-merge
if: steps.cpr.outputs.pull-request-operation == 'created'
uses: peter-evans/enable-pull-request-automerge@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
merge-method: squash

0 comments on commit c2cc0ac

Please sign in to comment.