We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 840dc0b commit bc64a3fCopy full SHA for bc64a3f
1 file changed
.github/workflows/lint-automation.yml
@@ -74,9 +74,10 @@ jobs:
74
75
- name: 🎯 Create GitHub issues for lint problems
76
if: |
77
- steps.analyze.outputs.has-issues == 'true' &&
78
- (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
79
- (github.event_name == 'workflow_dispatch' && inputs.create_issues == true)
+ steps.analyze.outputs.has-issues == 'true' && (
+ (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
+ (github.event_name == 'workflow_dispatch' && inputs.create_issues == true)
80
+ )
81
env:
82
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
83
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
0 commit comments