depup #908
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: depup | |
on: | |
schedule: | |
- cron: '14 14 * * *' # Runs at 14:14 UTC every day | |
repository_dispatch: | |
types: [depup] | |
workflow_dispatch: | |
jobs: | |
reviewdog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haya14busa/action-depup@v1 | |
id: depup | |
with: | |
file: action.yml | |
version_name: REVIEWDOG_VERSION | |
repo: reviewdog/reviewdog | |
- name: Create Pull Request to update reviewdog | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
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 [v${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.depup.outputs.latest }}) | |
Compare [v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/compare/v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}) | |
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup). | |
branch: depup/reviewdog | |
base: master | |
labels: "bump:minor" | |
dotenv-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haya14busa/action-depup@v1 | |
id: depup | |
with: | |
file: action.yml | |
version_name: DOTENV_LINTER_VERSION | |
repo: dotenv-linter/dotenv-linter | |
- name: Create Pull Request to update dotenv-linter | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: "chore(deps): update dotenv-linter to ${{ steps.depup.outputs.latest }}" | |
commit-message: "chore(deps): update dotenv-linter to ${{ steps.depup.outputs.latest }}" | |
body: | | |
Update dotenv-linter to [v${{ steps.depup.outputs.latest }}](https://github.com/dotenv-linter/dotenv-linter/releases/tag/v${{ steps.depup.outputs.latest }}) | |
Compare [v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}](https://github.com/dotenv-linter/dotenv-linter/compare/v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}) | |
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup). | |
branch: depup/dotenv-linter | |
base: master | |
labels: "bump:minor" |