Skip to content

Commit

Permalink
#2364 fix, pushing to try changes in private repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SahibYar committed Jul 1, 2023
1 parent fd78184 commit 0b77b69
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/go-test-setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
runs:
using: "composite"
steps:
- name: increase the UDP receive buffer size # see https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size
- name: increase the UDP receive buffer size # see https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes
shell: bash
run: sysctl -w net.core.rmem_max=2500000
if: ${{ matrix.os == 'ubuntu' }}
Expand Down
20 changes: 20 additions & 0 deletions .github/actions/markdown-link-check/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Markdown Links Check

on:
push: [master]
pull_request: [master]
schedule:
# runs once in a couple of days at 9am
- cron: '0 9 */2 * *'

jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
# for removing any false positives
config-file: .github/workflows/markdown-links-config.json
7 changes: 7 additions & 0 deletions .github/workflows/markdown-links-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"ignorePatterns": [
{
"pattern": "^https://github.com/libp2p/go-libp2p/issues/"
}
]
}

0 comments on commit 0b77b69

Please sign in to comment.