3 Commits
Author SHA1 Message Date
Rushaway d62379b17b ci: add Dependabot auto-merge workflow (#8) 2026-08-18 14:08:15 +02:00
RushawayandRushaway cd3dc0bac1 chore(ci): bump actions/checkout from v4 to v7 (#7)
Co-authored-by: Rushaway <[email protected]>
2026-08-18 13:39:20 +02:00
Rushaway e2b0ee2fec fix(compat): support SM 1.13 compiler (#6) 2026-08-15 14:56:45 +02:00
4 changed files with 28 additions and 4 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ jobs:
CXX: "clang++-14"
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive
@@ -52,7 +52,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive
@@ -0,0 +1,24 @@
name: Dependabot auto-merge
on:
pull_request_target:
branches:
- master
- main
types:
- opened
permissions:
pull-requests: write
contents: write
jobs:
enableAutoMerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -20,7 +20,7 @@ methodmap AsyncSocket < Handle {
public bool WriteNull(const char[] data)
{
this.Write(data, strlen(data) + 1);
return this.Write(data, strlen(data) + 1);
}
public native bool SetConnectCallback(AsyncSocketConnectCallback callback);
+1 -1
View File
@@ -1 +1 @@
1.1.0
1.1.1