forked from mandiant/capa
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ҉αkα x⠠⠵ <[email protected]>
- Loading branch information
1 parent
06b71df
commit 4a2f9f6
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Auto Update and Merge | ||
|
||
on: | ||
schedule: | ||
- cron: '*/45 * * * *' # Run every 45 minutes | ||
pull_request_target: | ||
types: [assigned, unassigned, labeled, unlabeled, opened, edited, reopened, synchronize, ready_for_review, locked, unlocked, review_requested, review_request_removed, auto_merge_enabled, auto_merge_disabled] | ||
branches: | ||
- master # Replace 'target-branch' with your actual branch name | ||
|
||
|
||
jobs: | ||
auto-merge: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 # Fetch all history for merging | ||
ref: ${{ github.event.pull_request.head.ref }} # Checkout the PR's branch | ||
|
||
- name: Merge PR into master | ||
run: | | ||
git config --global user.name 'github-actions[bot]' | ||
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | ||
git checkout master | ||
git pull origin master # Ensure master is up-to-date | ||
git merge ${{ github.event.pull_request.head.ref }} --no-ff # Merge the PR's branch | ||
- name: Push changes | ||
run: git push origin master |