Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
pingevt committed Oct 31, 2024
1 parent d7d8e89 commit a051228
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/auto-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:

- name: Create branch and PR
run: |
git remote show origin
git remote update
git fetch
git checkout -b ${{ env.BRANCH }}
git push origin ${{ env.BRANCH }}
gh pr create --repo bluecadet/panth-github-actions -B master -H ${{ env.BRANCH }} --title 'Daily merge to TEST' --body "Daily merge $(date +'%Y-%m-%d %H:%M:%S')" --assignee pingevt --reviewer pingevt
gh pr create --repo ${{ env.GITHUB_REF_NAME }} -B master -H ${{ env.BRANCH }} --title 'Daily merge to TEST' --body "Daily merge $(date +'%Y-%m-%d %H:%M:%S')" --assignee pingevt --reviewer pingevt
env:
BRANCH: daily/$(date +'%Y-%m-%d)-${{ github.run_id }}-${{ github.run_attempt }}
BRANCH: daily/$(date +'%Y-%m-%d')-${{ github.run_id }}-${{ github.run_attempt }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a051228

Please sign in to comment.