-
Notifications
You must be signed in to change notification settings - Fork 174
Open
Labels
Description
AL-Go version
8.0
Describe the issue
I added these to my .github/AL-Go-settings.json
"CICDPushBranches": [],
"CICDPullRequestBranches": [],
Then I ran Update-AL-Go System files.
For CI/CD.yaml
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '.github/workflows/*.yaml'
- '!.github/workflows/CICD.yaml'
branches: [ 'main', 'release/*', 'feature/*' ]
became
on:
workflow_dispatch:
But for PullRequestHandler.yaml
on:
pull_request_target:
branches: [ 'main' ]
became:
on:
pull_request_target:
branches: [ '' ]
and that breaks the yaml.
Expected behavior
Should remove the target branches properly.
Steps to reproduce
As above.
Additional context (logs, screenshots, etc.)
No response