Skip to content

upgrade-dependencies #999

upgrade-dependencies

upgrade-dependencies #999

# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
name: upgrade-dependencies
on:
workflow_dispatch: {}
schedule:
- cron: 0 0 * * *
jobs:
upgrade-new-image-handler:
name: Upgrade
runs-on: ubuntu-latest
defaults:
run:
working-directory: source/new-image-handler
permissions:
contents: read
outputs:
conclusion: ${{ steps.build.outputs.conclusion }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install --check-files --frozen-lockfile
- name: Upgrade dependencies
run: yarn upgrade-dependencies
- name: Build
id: build
run: yarn build && yarn build:new-image-handler:docker && echo "::set-output name=conclusion::success" || echo
"::set-output name=conclusion::failure"
- name: Create Patch
run: |-
git add .
git diff --patch --staged > .upgrade.tmp.patch
- name: Upload patch
uses: actions/upload-artifact@v2
with:
name: .upgrade.tmp.patch
path: source/new-image-handler/.upgrade.tmp.patch
pr:
name: Create Pull Request
needs: upgrade-new-image-handler
runs-on: ubuntu-latest
defaults:
run:
working-directory: source/new-image-handler
permissions:
contents: write
pull-requests: write
checks: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download patch
uses: actions/download-artifact@v2
with:
name: .upgrade.tmp.patch
path: ${{ runner.temp }}
- name: Apply patch
run: '[ -s ${{ runner.temp }}/.upgrade.tmp.patch ] && git apply ${{ runner.temp
}}/.upgrade.tmp.patch || echo "Empty patch. Skipping."'
- name: Create Pull Request
id: create-pr
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: >-
chore(deps): upgrade dependencies
Upgrades project dependencies. See details in [workflow run].
[Workflow Run]: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
------
*Automatically created by projen via the "upgrade-dependencies" workflow*
branch: github-actions/upgrade-dependencies
title: "chore(deps): upgrade dependencies"
body: >-
Upgrades project dependencies. See details in [workflow run].
[Workflow Run]: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
------
*Automatically created by projen via the "upgrade-dependencies" workflow*
- name: Update status check
if: steps.create-pr.outputs.pull-request-url != ''
run: "curl -i --fail -X POST -H \"Accept: application/vnd.github.v3+json\" -H
\"Authorization: token ${GITHUB_TOKEN}\"
https://api.github.com/repos/${{ github.repository }}/check-runs -d
'{\"name\":\"build\",\"head_sha\":\"github-actions/upgrade-dependenci\
es\",\"status\":\"completed\",\"conclusion\":\"${{
needs.upgrade.outputs.conclusion }}\",\"output\":{\"title\":\"Created
via the upgrade-dependencies workflow.\",\"summary\":\"Action run URL:
https://github.com/${{ github.repository }}/actions/runs/${{
github.run_id }}\"}}'"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}