Skip to content

Commit

Permalink
ensure branch is unique
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-stephens committed Jan 10, 2025
1 parent cb7fae8 commit f74a393
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_tlsa_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ jobs:
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout -b update-tlsa-record
git checkout -b update-tlsa-record-${{ github.run_id }}
git add testing/integration_tests.py
git commit -m "Update TLSA records"
git push -u origin update-tlsa-record
git push -u origin update-tlsa-record-${{ github.run_id }}
- name: Create Pull Request
if: env.file_updated == 'true'
Expand All @@ -123,4 +123,4 @@ jobs:
title: "Update TLSA records"
body: "This PR updates the TLSA records in the test file."
base: main
branch: update-tlsa-record
branch: update-tlsa-record-${{ github.run_id }}

0 comments on commit f74a393

Please sign in to comment.