We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8318c commit 8dad71cCopy full SHA for 8dad71c
.github/workflows/ci.yml
@@ -73,7 +73,8 @@ jobs:
73
- name: Skip check for automated updates
74
run: |
75
# Skip validation for automated package download updates
76
- if [[ "${{ github.actor }}" == "github-actions[bot]" && "${{ github.event.pull_request.title }}" == *"update package download counts"* ]]; then
+ PR_TITLE='${{ github.event.pull_request.title }}'
77
+ if [[ "${{ github.actor }}" == "github-actions[bot]" && "$PR_TITLE" == *"update package download counts"* ]]; then
78
echo "✅ Skipping check for automated package download update"
79
exit 0
80
fi
0 commit comments