From 12721939e61ecf7b9205f5a5813319d3b09a38b2 Mon Sep 17 00:00:00 2001 From: "awf-autoware-bot[bot]" <94889083+awf-autoware-bot[bot]@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:03:47 +0900 Subject: [PATCH] chore: sync files (#291) Signed-off-by: GitHub Co-authored-by: kenji-miyake Signed-off-by: guiping meng --- .github/workflows/github-release.yaml | 8 ++++---- .markdown-link-check.json | 6 +++--- .pre-commit-config-optional.yaml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/github-release.yaml b/.github/workflows/github-release.yaml index 19e1e9c12e5..95ebb8725f6 100644 --- a/.github/workflows/github-release.yaml +++ b/.github/workflows/github-release.yaml @@ -26,8 +26,8 @@ jobs: REF_NAME="${{ github.ref_name }}" fi - echo ::set-output name=ref-name::"$REF_NAME" - echo ::set-output name=tag-name::"${REF_NAME#beta/}" + echo "ref-name=$REF_NAME" >> $GITHUB_OUTPUT + echo "tag-name=${REF_NAME#beta/}" >> $GITHUB_OUTPUT - name: Check out repository uses: actions/checkout@v3 @@ -39,7 +39,7 @@ jobs: id: set-target-name run: | if [[ "${{ steps.set-tag-name.outputs.ref-name }}" =~ "beta/" ]]; then - echo ::set-output name=target-name::"${{ steps.set-tag-name.outputs.ref-name }}" + echo "target-name=${{ steps.set-tag-name.outputs.ref-name }}" >> $GITHUB_OUTPUT fi - name: Create a local tag for beta branches @@ -62,7 +62,7 @@ jobs: verb=edit fi - echo ::set-output name=verb::"$verb" + echo "verb=$verb" >> $GITHUB_OUTPUT env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.markdown-link-check.json b/.markdown-link-check.json index a753f144d03..1c743d60343 100644 --- a/.markdown-link-check.json +++ b/.markdown-link-check.json @@ -1,6 +1,9 @@ { "aliveStatusCodes": [200, 206, 403], "ignorePatterns": [ + { + "pattern": "^https://www\\.autosar\\.org/*" + }, { "pattern": "^http://localhost" }, @@ -9,9 +12,6 @@ }, { "pattern": "^https://github.com/.*/discussions/new" - }, - { - "pattern": "^https://www\\.autosar\\.org/*" } ], "retryOn429": true, diff --git a/.pre-commit-config-optional.yaml b/.pre-commit-config-optional.yaml index e0019e10d52..caa92d0812a 100644 --- a/.pre-commit-config-optional.yaml +++ b/.pre-commit-config-optional.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/tcort/markdown-link-check - rev: v3.10.3 + rev: v3.11.0 hooks: - id: markdown-link-check args: [--config=.markdown-link-check.json]