upgrade-maintenance-v5.3 #154
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
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
name: upgrade-maintenance-v5.3 | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
upgrade: | |
name: Upgrade | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
outputs: | |
patch_created: ${{ steps.create_patch.outputs.patch_created }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: maintenance/v5.3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: yarn install --check-files --frozen-lockfile | |
- name: Back-port projenrc changes from main | |
env: | |
CI: "false" | |
run: git fetch origin main && git checkout FETCH_HEAD -- README.md && yarn projen | |
- name: Upgrade dependencies | |
run: npx projen upgrade | |
- name: Find mutations | |
id: create_patch | |
run: |- | |
git add . | |
git diff --staged --patch --exit-code > repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT | |
working-directory: ./ | |
- name: Upload patch | |
if: steps.create_patch.outputs.patch_created | |
uses: actions/upload-artifact@v4.3.6 | |
with: | |
name: repo.patch | |
path: repo.patch | |
overwrite: true | |
pr: | |
name: Create Pull Request | |
needs: upgrade | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
if: ${{ needs.upgrade.outputs.patch_created }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: maintenance/v5.3 | |
- name: Download patch | |
uses: actions/download-artifact@v4 | |
with: | |
name: repo.patch | |
path: ${{ runner.temp }} | |
- name: Apply patch | |
run: '[ -s ${{ runner.temp }}/repo.patch ] && git apply ${{ runner.temp }}/repo.patch || echo "Empty patch. Skipping."' | |
- name: Set git identity | |
run: |- | |
git config user.name "github-actions" | |
git config user.email "github-actions@github.com" | |
- name: Create Pull Request | |
id: create-pr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
commit-message: |- | |
chore(deps): upgrade dependencies | |
Upgrades project dependencies. See details in [workflow run]. | |
[Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
------ | |
*Automatically created by projen via the "upgrade-maintenance-v5.3" workflow* | |
branch: github-actions/upgrade-maintenance-v5.3 | |
title: "chore(deps): upgrade dependencies" | |
labels: auto-approve | |
body: |- | |
Upgrades project dependencies. See details in [workflow run]. | |
[Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
------ | |
*Automatically created by projen via the "upgrade-maintenance-v5.3" workflow* | |
author: github-actions <github-actions@github.com> | |
committer: github-actions <github-actions@github.com> | |
signoff: true |