Skip to content

[ISSUE #560]🔧Update workflows config file #561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/auto-comment-pr.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Auto Comment on PR

on:
pull_request:
pull_request_target:
types: [ opened, synchronize ]
branches: [main]

jobs:
comment:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/auto_request_review.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Auto Request Review

on:
pull_request:
pull_request_target:
types: [ opened, ready_for_review, reopened, synchronize ]
branches: [main]

jobs:
auto-request-review:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Auto Merge PR
on:
pull_request:
pull_request_target:
types:
- labeled
- synchronize
- opened
branches: [main]

jobs:
automerge:
Expand All @@ -16,7 +17,7 @@ jobs:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: "approved,auto merge"
MERGE_METHOD: "squash"
MERGE_COMMIT_MESSAGE: "pull-request-title"
MERGE_COMMIT_MESSAGE: "automatic"
MERGE_FORKS: "false"
MERGE_RETRIES: "10"
MERGE_RETRY_SLEEP: "20000"
Expand Down
Loading