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
17 changes: 17 additions & 0 deletions .github/workflows/update-table-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:

- name: Push
shell: bash
if: ${{ env.TARGET_BRANCH != 'main' }}
working-directory: ${{ env.REPO_LOCAL_PATH }}
run: |
git config user.name 'eclipse-set-bot'
Expand All @@ -75,3 +76,19 @@ jobs:
git status
git push -f
git status

- name: Create PR
if: ${{ env.TARGET_BRANCH == 'main' }}
working-directory: ${{ env.REPO_LOCAL_PATH }}
run: |
git config user.name 'eclipse-set-bot'
git config user.email 'set-bot@eclipse.org'
git checkout -b update-table-reference
git status
git add -A
git commit --allow-empty -m "Update table reference"
git status
git push --delete origin update-table-reference
git push --set-upstream origin update-table-reference
git status
gh pr create --base main --title "Update table reference"
Loading