Skip to content
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
35 changes: 26 additions & 9 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
update:
name: Autoupdate dependencies
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60

steps:
- name: Checkout repo
Expand Down Expand Up @@ -127,14 +127,6 @@ jobs:
--assignee siarheidudko \
--reviewer siarheidudko)
echo "pr_url=$PR_URL" >> "$GITHUB_OUTPUT"
- name: Enable auto-merge on success PR
if: steps.pr_success.outputs.pr_url != ''
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ steps.pr_success.outputs.pr_url }}
run: |
gh api repos/${{ github.repository }} --method PATCH -f allow_auto_merge=true || true
gh pr merge "$PR_URL" --auto --squash || true
- name: Open PR (autoupdater failed)
id: pr_failure
if: steps.autoupdate.outcome == 'failure' && steps.diff.outputs.has_diff == 'true'
Expand Down Expand Up @@ -172,6 +164,31 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run pr-checks.yml --ref "$AUTOUPDATE_BRANCH" || true
- name: Wait for PR checks and merge (autoupdater succeeded)
id: merge_pr
if: steps.pr_success.outputs.pr_url != ''
continue-on-error: true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ steps.pr_success.outputs.pr_url }}
run: |
for i in $(seq 1 10); do
COUNT=$(gh pr checks "$PR_URL" 2>/dev/null | grep -c '\S' || true)
[ "$COUNT" -gt 0 ] && break
sleep 30
done
gh pr checks "$PR_URL" --watch
gh pr merge "$PR_URL" --squash --delete-branch
- name: Tag release commit and dispatch deploy
if: steps.merge_pr.outcome == 'success' && steps.pkg.outputs.version != ''
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git fetch origin main
git tag -f "v${{ steps.pkg.outputs.version }}" "$(git rev-parse origin/main)"
git push --force origin "v${{ steps.pkg.outputs.version }}"
gh workflow run build-and-deploy.yml --ref main \
-f tag="v${{ steps.pkg.outputs.version }}" || true
- name: Dispatch Claude to fix the failed autoupdate
if: steps.pr_failure.outputs.pr_url != ''
env:
Expand Down