diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index 5267ee0b..7cb358d5 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -19,7 +19,7 @@ jobs: BRANCH_NAME="${GITHUB_REF#refs/heads/}" echo "Branch: $BRANCH_NAME" - PRS=$(curl -s -H "Authorization: token ${{ secret.GITHUB_TOKEN }}" \ + PRS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ "https://api.github.com/repos/${{ github.repository }}/pulls?state=open") MATCHING_PR=$(echo "$PRS" | jq -r --arg branch "$BRANCH_NAME" '.[] | select(.head.ref == $branch) | .number') @@ -37,7 +37,7 @@ jobs: uses: actions/github-script@v7 if: steps.check_pr.outputs.exists == 'false' with: - github-token: ${{ secrets.AUTO_PR_CREATE_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} script: | const headRef = '${{ github.ref_name }}' const createParams = { diff --git a/README.md b/README.md index 34d5ba5a..9d166a28 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ -# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) +# [OCI チュートリアル](https://oracle-japan.github.io/ocitutorials/) 本コンテンツは、作成者が誠心誠意作成しておりますが、万が一、本ドキュメントの間違いや、不正確な記述などを見つけられた場合は、 Issue 登録にてご連絡ください。 + +