Skip to content

Commit

Permalink
place to right order othrwise it breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
atheo89 committed Nov 28, 2024
1 parent e24c9e5 commit 4de8f31
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/notebook-controller-images-updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ jobs:
pull-requests: write

steps:
- name: Configure Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Actions"
- name: Checkout branch
uses: actions/checkout@v4
with:
Expand All @@ -63,6 +58,11 @@ jobs:
git checkout -b ${{ env.TEMP_UPDATER_BRANCH }} origin/${{ env.BRANCH_NAME }}
git push --set-upstream origin ${{ env.TEMP_UPDATER_BRANCH }}
- name: Configure Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Actions"
- name: Retrieve latest commit
id: commit-id
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sync-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Merge source branch into target
run: |
set -e
Expand Down

0 comments on commit 4de8f31

Please sign in to comment.