diff --git a/shared/node/corepack-up-pr/action.yml b/shared/node/corepack-up-pr/action.yml new file mode 100644 index 0000000..8b81b0e --- /dev/null +++ b/shared/node/corepack-up-pr/action.yml @@ -0,0 +1,26 @@ +name: 'Corepack up PR' +description: 'Create PR with corepack up' +inputs: + token: + required: true + description: 'token with access to your repository' + +runs: + using: "composite" + steps: + - name: Run corepack up + run: corepack up + shell: bash + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + title: Corepack up + branch: github-actions/build/tools/corepack-up + commit-message: 'build(tools): corepack up' + body: | + Automated corepack up + + ## Release notes + - + token: ${{ inputs.token }}