Compare commits

..

1 Commits

2 changed files with 6 additions and 9 deletions

View File

@ -28,13 +28,10 @@ jobs:
git config user.name github-actions
git config user.email github-actions@github.com
git add ./backend/src/db/migrations
rm added_files.txt
git commit -m "chore: renamed new migration files to latest timestamp (gh-action)"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore: renamed new migration files to latest UTC(gh-action)'
title: 'GH Action: rename new migration file timestamp'
branch-suffix: timestamp
- name: Push changes
env:
TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}
run: |
git push https://$GITHUB_ACTOR:$TOKEN@github.com/${{ github.repository }}.git HEAD:origin/main

View File

@ -6,5 +6,5 @@ export async function up(knex: Knex): Promise<void> {
export async function down(knex: Knex): Promise<void> {
}
}