fix(ci): correct Yarn 4 cache paths and add auto-merge for version PRs

- Fixed cache paths for Yarn 4 (node_modules + .yarn/install-state.gz)
- Updated all workflows to use actions/cache@v4
- Added auto-merge for WhatsApp version update PRs

https://claude.ai/code/session_01QPt4WssG6jjEciQKdVpFtK
This commit is contained in:
Claude
2026-02-02 18:20:03 +00:00
parent c7f6ef9b14
commit 1fa321c0a2
6 changed files with 38 additions and 13 deletions
+4 -2
View File
@@ -35,10 +35,12 @@ jobs:
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Restore Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+4 -2
View File
@@ -35,10 +35,12 @@ jobs:
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Restore Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+4 -2
View File
@@ -44,10 +44,12 @@ jobs:
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Restore Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+4 -2
View File
@@ -43,10 +43,12 @@ jobs:
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Restore Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+4 -2
View File
@@ -36,10 +36,12 @@ jobs:
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
- name: Restore Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+18 -3
View File
@@ -48,7 +48,9 @@ jobs:
uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
path: |
node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
@@ -143,11 +145,24 @@ jobs:
> **Note:** This PR was created with force mode enabled."
fi
gh pr create \
# Create PR
PR_URL=$(gh pr create \
--title "chore: update WhatsApp Web version" \
--body "$PR_BODY" \
--base master \
--head "$BRANCH_NAME" || echo "PR already exists or could not be created"
--head "$BRANCH_NAME" 2>&1) || true
if [[ "$PR_URL" == *"github.com"* ]]; then
echo "PR created: $PR_URL"
# Auto-merge the PR (squash merge)
echo "Attempting to auto-merge..."
gh pr merge "$BRANCH_NAME" --squash --auto --delete-branch || \
gh pr merge "$BRANCH_NAME" --squash --delete-branch || \
echo "Auto-merge not available - PR created for manual review"
else
echo "PR already exists or could not be created: $PR_URL"
fi
- name: Summary
run: |