Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/update-api-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,14 @@ jobs:
npm run lint-fix
npm run format
git add .
git commit -m "Update API Types"
git commit -m "chore(types): Update API Types"
git push --force origin $BRANCH_NAME --no-verify
env:
BRANCH_NAME: chore/galileo-automation/update-api-types-${{ steps.date.outputs.date }}

- name: create pull request
run: gh pr create -B main -H $BRANCH_NAME --label 'dependencies' --title 'Update API Types' --body 'Fix any breaking changes if this pull request fails to deploy'
run: |
gh pr create -B main -H $BRANCH_NAME --label 'dependencies' --title 'chore(types): Update API Types' --body 'Fix any breaking changes if this pull request fails to deploy'
env:
BRANCH_NAME: chore/galileo-automation/update-api-types-${{ steps.date.outputs.date }}
GITHUB_TOKEN: ${{ secrets.GALILEO_AUTOMATION_GITHUB_TOKEN }}
Loading