Skip to content

chore(deps): bump follow-redirects from 1.15.3 to 1.15.4 #2

chore(deps): bump follow-redirects from 1.15.3 to 1.15.4

chore(deps): bump follow-redirects from 1.15.3 to 1.15.4 #2

Workflow file for this run

name: Merge Release
on:
pull_request:
types: [closed]
concurrency:
cancel-in-progress: true
group: release-${{ github.ref_name }}
jobs:
yarn-release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
name: Create release
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }}
- name: Install dependencies
run: yarn --immutable
- name: Run release
env:
GIT_AUTHOR_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
run: yarn release
- name: Push release
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git remote set-url --push origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git push -f --follow-tags origin main