Skip to content

Commit

Permalink
fix branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Feb 21, 2024
1 parent 16bfaea commit 90a3933
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pull-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ jobs:
run: |
python scripts/pull_upstream.py
- name: Generate branch name
id: set_branch_name
run: echo "BRANCH_NAME=update-fingerprints-$(date +'%Y%m%d')" >> $GITHUB_ENV

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: Merge in new official signatures
title: Merge in new official signatures
body: |
This is an automated update of fingerprints.
branch: update-fingerprints-$(date +'%Y%m%d')
branch: ${{ env.BRANCH_NAME }}
delete-branch: true
signoff: true

0 comments on commit 90a3933

Please sign in to comment.