From 96821dc2cdc704978761f7d192384de0213aeded Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Fri, 12 Feb 2021 08:39:04 +0900 Subject: [PATCH] Fix review suggest --- .github/workflows/depup.yml | 16 ++++++++-------- README.md | 10 ++++------ 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/depup.yml b/.github/workflows/depup.yml index 34d78df..3a8a819 100644 --- a/.github/workflows/depup.yml +++ b/.github/workflows/depup.yml @@ -22,13 +22,13 @@ jobs: uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - title: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" - commit-message: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" + title: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" + commit-message: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" body: | - Update ${{ github.job }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) + Update ${{ steps.depup.outputs.repo }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}). - branch: depup/${{ github.job }} + branch: depup/${{ steps.depup.outputs.repo }} redpen: runs-on: ubuntu-latest @@ -45,10 +45,10 @@ jobs: uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - title: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" - commit-message: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" + title: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" + commit-message: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" body: | - Update ${{ github.job }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) + Update ${{ steps.depup.outputs.repo }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}). - branch: depup/${{ github.job }} + branch: depup/${{ steps.depup.outputs.repo }} diff --git a/README.md b/README.md index 583949e..d243d56 100644 --- a/README.md +++ b/README.md @@ -80,13 +80,11 @@ jobs: uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - title: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" - commit-message: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}" + title: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" + commit-message: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}" body: | - Update ${{ github.job }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) + Update ${{ steps.depup.outputs.repo }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }}) This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}). - branch: depup/${{ github.job }} + branch: depup/${{ steps.depup.outputs.repo }} ``` - - (This example depends on workflow name/job name, please rewrite to your target)