diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-02-10 21:01:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 21:01:31 +0100 |
commit | 855802ca4506733829e5dcaca7e0bd3f7295a9aa (patch) | |
tree | d64325b5e72a7ffaaf7f5f0011e994da813847d2 /.github | |
parent | ec70d375d1d764ea09edc14dec5d0e4dfa00ad78 (diff) | |
parent | 9c27c1c65145dc644c97f19558b63f70b98f3abf (diff) | |
download | NorthstarWiki-docs/rcon.tar.gz NorthstarWiki-docs/rcon.zip |
Merge branch 'main' into docs/rcondocs/rcon
Diffstat (limited to '.github')
-rw-r--r-- | .github/.markdownlinkcheck.json | 6 | ||||
-rw-r--r-- | .github/workflows/merge-conflict-auto-label.yml | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/.github/.markdownlinkcheck.json b/.github/.markdownlinkcheck.json index ff5a98a..3749dee 100644 --- a/.github/.markdownlinkcheck.json +++ b/.github/.markdownlinkcheck.json @@ -4,7 +4,13 @@ "pattern": "https://help.ea.com/en/help/pc/link-ea-and-steam/" }, { + "pattern": "https://panel.ticketsbot.net/manage/920776187884732556/tags" + }, + { "pattern": "https://forum.manjaro.org/t/howto-troubleshoot-crackling-in-pipewire/82442" + }, + { + "pattern": "https://wiki.archlinux.org/title/PulseAudio/Troubleshooting#Glitches.2C\\_skips\\_or\\_crackling" } ] } diff --git a/.github/workflows/merge-conflict-auto-label.yml b/.github/workflows/merge-conflict-auto-label.yml new file mode 100644 index 0000000..e237726 --- /dev/null +++ b/.github/workflows/merge-conflict-auto-label.yml @@ -0,0 +1,16 @@ +name: Merge Conflict Auto Label +on: + push: + branches: + - main + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: mschilde/auto-label-merge-conflicts@master + with: + CONFLICT_LABEL_NAME: "merge conflicts" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + MAX_RETRIES: 5 + WAIT_MS: 5000 |