ci(deps): bump @aws-sdk/client-s3 from 3.449.0 to 3.478.0 #341
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: Misc - Command - Bump up version | |
on: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
if: > | |
contains( github.event.comment.html_url, '/pull/' ) | |
&& startsWith( github.event.comment.body, '/bump-version ' ) | |
steps: | |
- name: Get metadata | |
id: meta | |
run: | | |
# Get up range from comment (one of ["patch","minor","major"]) | |
UP_RANGE=$(echo ${{ github.event.comment.body }} | sed -e 's/\/bump-version [[:space:]]*\(.*\)/\1/') | |
bash -c "[[ ${UP_RANGE} =~ (patch|minor|major) ]]" | |
echo "::set-output name=up_range::${UP_RANGE}" | |
# Get ref branch | |
echo "::set-output name=branch_name::$(curl -H \"Authorization: token ${GITHUB_TOKEN}\" ${{ github.event.issue.pull_request.url }} | jq -r '.head.ref')" | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.meta.outputs.branch_name }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "16.14.2" | |
cache: "yarn" | |
- run: yarn install | |
- name: Bump up version | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
yarn run "bump-version:${{ steps.meta.outputs.up_range }}" | |
git commit -am 'Bump up version' | |
git push | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |