chore(deps): bump framer-motion from 11.18.1 to 12.0.3 #71
Workflow file for this run
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: Cleanup PR Environment | |
on: | |
pull_request: | |
types: [closed] | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: write | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
if: github.actor != 'dependabot[bot]' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN_DEV }} | |
aws-region: eu-west-2 | |
- name: Setup AWS Profile | |
run: | | |
aws configure set region eu-west-2 --profile tvseries-dev | |
aws configure set aws_access_key_id ${{ env.AWS_ACCESS_KEY_ID }} --profile tvseries-dev | |
aws configure set aws_secret_access_key ${{ env.AWS_SECRET_ACCESS_KEY }} --profile tvseries-dev | |
aws configure set aws_session_token ${{ env.AWS_SESSION_TOKEN }} --profile tvseries-dev | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Remove PR Environment | |
run: pnpm sst remove --stage pr-${{ github.event.pull_request.number }} | |
- name: Update PR Comment | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const { data: comments } = await github.rest.issues.listComments({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
}); | |
const existingComment = comments.find(comment => | |
comment.user.login === 'github-actions[bot]' && | |
comment.body.includes('preview environment') | |
); | |
if (existingComment) { | |
const previewUrl = `https://pr-${context.issue.number}.dev.tvseri.es`; | |
const commentBody = `## 🧹 Preview environment cleaned up! | |
Was hosted at ${previewUrl}`; | |
await github.rest.issues.updateComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
comment_id: existingComment.id, | |
body: commentBody | |
}); | |
} |