Skip to content

remove stripePriceLink from events table in seed.ts script #449

remove stripePriceLink from events table in seed.ts script

remove stripePriceLink from events table in seed.ts script #449

Workflow file for this run

name: Format Code
on:
push:
branches:
- "**"
jobs:
format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Format code with Prettier
run: yarn format
- name: Check for changes
id: git_changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
if [ -n "$(git status --porcelain)" ]; then
echo "changes_detected=true" >> "$GITHUB_ENV"
else
echo "changes_detected=false" >> "$GITHUB_ENV"
fi
- name: Commit and push changes
if: ${{ env.changes_detected == 'true' }}
run: |
git add .
git commit -m "Format code with Prettier"
git push