Skip to content

Commit

Permalink
upgrade latest prefect addition for eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
jimid27 committed Mar 26, 2024
1 parent 54263a6 commit a6ef34b
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/npm_update_latest_prefect.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
name: Update to latest Prefect Packages
on:
workflow_dispatch:
inputs:
package_name:
description: The name of the Prefect package to update
required: true
package_version:
description: The version of the Prefect package to update
required: true
permissions: {}

jobs:
update_prefect_packages:
runs-on: ubuntu-latest
permissions:
# required to write to the repo
contents: write
# required to open a pr with prefect ui changes
pull-requests: write
steps:
- uses: actions/checkout@v4

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: create branch for dependency version updates
run: git checkout -b "prefect-package-${{ inputs.package_name }}-${{ inputs.package_version }}-update"

- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'

- name: Install Dependencies
run: npm ci

- name: Upgrade Package
run: |
npm i @${{ inputs.package_name }}@${{ inputs.package_version }} --save-exact
- name: Commit Package changes
run: |
git add .
git commit -m "Update @${{ inputs.package_name }} to version ${{ inputs.package_version }}"
git push --set-upstream origin "prefect-package-${{ inputs.package_name }}-${{ inputs.package_version }}-update"
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Create Pull Request
run: |
git checkout "prefect-package-${{ inputs.package_name }}-${{ inputs.package_version }}-update"
gh pr create \
--base main \
--title "Update @${{ inputs.package_name }} to version ${{ inputs.package_version }}" \
--body "Update @${{ inputs.package_name }} to version ${{ inputs.package_version }}.
Release information can be found at https://github.com/${{ inputs.package_name }}/releases/tag/${{ inputs.package_version }}." \
--label maintenance
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit a6ef34b

Please sign in to comment.