diff --git a/.github/workflows/autobump.yml b/.github/workflows/depup.yml similarity index 51% rename from .github/workflows/autobump.yml rename to .github/workflows/depup.yml index cadba8e..4d3374a 100644 --- a/.github/workflows/autobump.yml +++ b/.github/workflows/depup.yml @@ -1,4 +1,4 @@ -name: autobump +name: depup on: schedule: - cron: '*/15 * * * *' @@ -7,12 +7,12 @@ on: - '**' jobs: - autobump: + depup: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ./ - id: autobump + id: depup with: file: testdata/testfile version_name: REVIEWDOG_VERSION @@ -22,12 +22,12 @@ jobs: uses: peter-evans/create-pull-request@v2 with: token: ${{ secrets.GITHUB_TOKEN }} - title: "chore(deps): update reviewdog to ${{ steps.autobump.outputs.latest }}" - commit-message: "chore(deps): update reviewdog to ${{ steps.autobump.outputs.latest }}" + title: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}" + commit-message: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}" body: | - Update reviewdog to [${{ steps.autobump.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.autobump.outputs.latest }}) + Update reviewdog to [${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.depup.outputs.latest }}) - This PR is auto generated by [autobump workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Aautobump). - branch: autobump/reviewdog + This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup). + branch: depup/reviewdog diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f69c41..d3d514a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./ - id: autobump + id: depup with: file: testdata/testfile version_name: REVIEWDOG_VERSION