DaanHoogland commented on code in PR #13183:
URL: https://github.com/apache/cloudstack/pull/13183#discussion_r3264526742


##########
.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:
   the intention here is to let it skip if it can’t write so it handles the 
whole list. It was based on the original action though, so no idea if it would 
work in this situation.



-- 
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]

Reply via email to