mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
Merge #6205: fix: only run some GH actions on PR approval, not on every comment
2777d30caa
fix(ci): only run some GH actions on PR approval, not on every comment (UdjinM6) Pull request description: ## Issue being fixed or feature implemented https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#running-a-workflow-when-a-pull-request-is-approved ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK2777d30caa
Tree-SHA512: 183deae1d1b32408bd81962721141e976912b2614a046ab23565537db62fcff7d367331db8ced7cf176dc67adbc18b96e7678b37068f807aaafb1718d55dea70
This commit is contained in:
commit
8f7dd9c6d2
3
.github/workflows/merge-check.yml
vendored
3
.github/workflows/merge-check.yml
vendored
@ -6,7 +6,8 @@ permissions:
|
||||
on:
|
||||
- push
|
||||
- pull_request_target
|
||||
- pull_request_review
|
||||
- pull_request_review:
|
||||
types: [submitted]
|
||||
|
||||
jobs:
|
||||
check_merge:
|
||||
|
3
.github/workflows/predict-conflicts.yml
vendored
3
.github/workflows/predict-conflicts.yml
vendored
@ -1,7 +1,8 @@
|
||||
name: "Check Potential Conflicts"
|
||||
on:
|
||||
- pull_request_target
|
||||
- pull_request_review
|
||||
- pull_request_review:
|
||||
types: [submitted]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
Loading…
Reference in New Issue
Block a user