vishesh92 commented on code in PR #13183: URL: https://github.com/apache/cloudstack/pull/13183#discussion_r3264509184
########## .github/workflows/merge-conflict-checker.yml: ########## @@ -17,19 +17,18 @@ name: "PR Merge Conflict Check" on: - push: - pull_request: - types: [opened, synchronize, reopened] + schedule: + - cron: '*/10 * * * *' + workflow_dispatch: -permissions: # added using https://github.com/step-security/secure-workflows - contents: read +permissions: {} concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true + group: "gh-aw-${{ github.workflow }}" jobs: triage: + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false Review Comment: I don't think this is required now since this is not running as part of the PRs. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
