From 1e8806d26b6c1ca5ee683deb38f64f89fe60c1fe Mon Sep 17 00:00:00 2001 From: ThrRip Date: Tue, 9 Jan 2024 18:50:50 +0800 Subject: [PATCH 1/6] Fix missing prefix for `transport.tls.force` in the example (#3921) --- conf/frps_full_example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/frps_full_example.toml b/conf/frps_full_example.toml index 88cf60ebc6..754452e3cc 100644 --- a/conf/frps_full_example.toml +++ b/conf/frps_full_example.toml @@ -41,7 +41,7 @@ transport.maxPoolCount = 5 # transport.tcpKeepalive = 7200 # transport.tls.force specifies whether to only accept TLS-encrypted connections. By default, the value is false. -tls.force = false +transport.tls.force = false # transport.tls.certFile = "server.crt" # transport.tls.keyFile = "server.key" From f7efbfeec53b64b85b256124b896430289933757 Mon Sep 17 00:00:00 2001 From: Remember <36129334+wuqinqiang@users.noreply.github.com> Date: Tue, 16 Jan 2024 18:38:54 +0800 Subject: [PATCH 2/6] fix: typo (#3938) --- conf/frps_full_example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/frps_full_example.toml b/conf/frps_full_example.toml index 754452e3cc..35c1a57b5b 100644 --- a/conf/frps_full_example.toml +++ b/conf/frps_full_example.toml @@ -129,7 +129,7 @@ allowPorts = [ maxPortsPerClient = 0 # If subDomainHost is not empty, you can set subdomain when type is http or https in frpc's configure file -# When subdomain is est, the host used by routing is test.frps.com +# When subdomain is test, the host used by routing is test.frps.com subDomainHost = "frps.com" # custom 404 page for HTTP requests From 7999791708af855f101b28d7c041e28215dd0063 Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 25 Jan 2024 11:38:19 +0800 Subject: [PATCH 3/6] update stale workflow (#3949) --- .github/workflows/stale.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cceb40daaa..fad2ce6fae 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,16 +18,16 @@ jobs: pull-requests: write # for actions/stale to close stale PRs runs-on: ubuntu-latest steps: - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Issues go stale after 30d of inactivity. Stale issues rot after an additional 7d of inactivity and eventually close.' - stale-pr-message: "PRs go stale after 30d of inactivity. Stale PRs rot after an additional 7d of inactivity and eventually close." + stale-issue-message: 'Issues go stale after 21d of inactivity. Stale issues rot after an additional 7d of inactivity and eventually close.' + stale-pr-message: "PRs go stale after 21d of inactivity. Stale PRs rot after an additional 7d of inactivity and eventually close." stale-issue-label: 'lifecycle/stale' exempt-issue-labels: 'bug,doc,enhancement,future,proposal,question,testing,todo,easy,help wanted,assigned' stale-pr-label: 'lifecycle/stale' exempt-pr-labels: 'bug,doc,enhancement,future,proposal,question,testing,todo,easy,help wanted,assigned' - days-before-stale: 30 + days-before-stale: 21 days-before-close: 7 debug-only: ${{ github.event.inputs.debug-only }} exempt-all-pr-milestones: true From 7418ae098d186d98ae8688c8c1c6f0e3e0adbeeb Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 25 Jan 2024 12:25:29 +0800 Subject: [PATCH 4/6] increase operations-per-run in stale workflow (#3950) --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index fad2ce6fae..a298974c72 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -32,3 +32,4 @@ jobs: debug-only: ${{ github.event.inputs.debug-only }} exempt-all-pr-milestones: true exempt-all-pr-assignees: true + operations-per-run: 200 From 6a488cc0814596de8265192b313d439f1365dd63 Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 25 Jan 2024 14:10:03 +0800 Subject: [PATCH 5/6] update stale workflow (#3952) --- .github/workflows/stale.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index a298974c72..368484bbb9 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -20,7 +20,6 @@ jobs: steps: - uses: actions/stale@v9 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'Issues go stale after 21d of inactivity. Stale issues rot after an additional 7d of inactivity and eventually close.' stale-pr-message: "PRs go stale after 21d of inactivity. Stale PRs rot after an additional 7d of inactivity and eventually close." stale-issue-label: 'lifecycle/stale' From 8023d147b0b4782d89935802329270c629f0f5d2 Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 25 Jan 2024 14:22:15 +0800 Subject: [PATCH 6/6] update stale workflow --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 368484bbb9..f5cc538f5e 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -16,6 +16,7 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs + actions: write runs-on: ubuntu-latest steps: - uses: actions/stale@v9