Objective
Fix permission denied errors preventing the Daily Workflow Updater from executing bash commands, specifically gh aw update and action update checks.
Context
From Discussion #14345, the Daily Workflow Updater §21779197565 cannot execute bash commands due to permission restrictions. This prevents the workflow from:
- Running
gh aw update to update workflow files
- Checking for action updates
- Performing any bash-based automation
Approach
- Review the Daily Workflow Updater workflow configuration
- Check if bash tool execution is enabled in frontmatter
- Verify required GitHub Actions permissions are granted
- Add missing tool permissions in workflow frontmatter:
tools:
bash:
enabled: true
- Test workflow can successfully execute bash commands
- Verify
gh aw update command works correctly
Files to Modify
.github/workflows/daily-workflow-updater.md - Add bash tool permissions
- Possibly
.github/workflows/daily-workflow-updater.lock.yml - Will be regenerated
Acceptance Criteria
AI generated by Plan Command for discussion #14345