Skip to content

Commit

Permalink
[bugfix] CI-Jobs in Release Actions PRs werden nun ausgeführt.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-hoelzl committed Jun 11, 2024
1 parent 229ed3b commit b73d6bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-actions-create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
with:
app-id: ${{ secrets.BALTECH_BOT_ID }}
private-key: ${{ secrets.BALTECH_BOT_KEY }}
- name: Configure git
run: |
git config --global url.https://${{ steps.generate-token.outputs.token }}@github.com/.insteadOf https://github.com/
git config --global user.name "${{ github.event.pusher.name }}"
git config --global user.email "${{ github.event.pusher.email }}"
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ steps.generate-token.outputs.token }}
- name: Configure git
run: |
git config user.name "${{ github.event.pusher.name }}"
git config user.email "${{ github.event.pusher.email }}"
- name: Checkout ci-scripts repository
uses: actions/checkout@v4
with:
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/release-actions-create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@ jobs:
with:
app-id: ${{ secrets.BALTECH_BOT_ID }}
private-key: ${{ secrets.BALTECH_BOT_KEY }}
- name: Configure git
run: |
git config --global url.https://${{ steps.generate-token.outputs.token }}@github.com/.insteadOf https://github.com/
git config --global user.name "${{ github.event.pusher.name }}"
git config --global user.email "${{ github.event.pusher.email }}"
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ steps.generate-token.outputs.token }}
- name: Configure git
run: |
git config user.name "${{ github.event.pusher.name }}"
git config user.email "${{ github.event.pusher.email }}"
- name: Checkout ci-scripts repository
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit b73d6bb

Please sign in to comment.