diff options
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 |