From 69633b1a006bef3aac1f58678a2ea5c949970800 Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong(cubxxw)" <3293172751nss@gmail.com> Date: Fri, 19 May 2023 10:06:29 +0800 Subject: [PATCH] feat: optimizing some details Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --- .github/workflows/check-coverage.yml | 1 + .github/workflows/codeql-analysis.yml | 1 + .github/workflows/link-pr.yml | 4 ++++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/check-coverage.yml b/.github/workflows/check-coverage.yml index 4a505f51d..b4a6a69c3 100644 --- a/.github/workflows/check-coverage.yml +++ b/.github/workflows/check-coverage.yml @@ -34,6 +34,7 @@ # uses: magnetikonline/action-golang-cache@v3 # with: # go-version: ${{ env.GO_VERSION }} +# token: ${{ secrets.BOT_GITHUB_TOKEN }} # - name: Install Dependencies # run: sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 38508b770..55cceffc3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -46,6 +46,7 @@ jobs: uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} + token: ${{ secrets.BOT_GITHUB_TOKEN }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. diff --git a/.github/workflows/link-pr.yml b/.github/workflows/link-pr.yml index 0750ecc34..4b476094c 100644 --- a/.github/workflows/link-pr.yml +++ b/.github/workflows/link-pr.yml @@ -9,6 +9,9 @@ on: - '.lycheeignore' push: branches: [ main ] + + schedule: + - cron: '0 11 * * *' jobs: linkChecker: @@ -41,3 +44,4 @@ jobs: title: Bug reports for links in OpenIM docs content-filepath: ./lychee/out.md labels: kind/documentation, triage/unresolved, report + token: ${{ secrets.BOT_GITHUB_TOKEN }}