fix: add required permissions to mobile-deploy-auto workflow (#800)

- Add contents: write and pull-requests: write permissions
- This allows the workflow to call mobile-deploy.yml with proper permissions
- Fixes the startup failure when PR is merged
This commit is contained in:
jayssj11
2025-07-29 11:36:03 +05:30
committed by GitHub
parent f3a9d6d193
commit ee297e71f9

View File

@@ -9,6 +9,10 @@ on:
- '!app/**/*.md'
- '!app/docs/**'
permissions:
contents: write
pull-requests: write
jobs:
check-and-deploy:
if: github.event.pull_request.merged == true && !contains(github.event.pull_request.labels.*.name, 'no-deploy')