Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/upstream-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
passphrase: ${{ secrets.PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_push_gpgsign: true

- name: Pull tags from upstream and rebase
shell: bash
Expand All @@ -49,6 +50,10 @@ jobs:
set -euxo pipefail
git config user.email '236124859+secureblue-bot@users.noreply.github.com'
git config user.name 'secureblue-bot'
git config --global user.signingkey E216FE5D67C3E057
git config --global commit.gpgsign true
git config --global tag.gpgSign true

git remote add 'upstream' 'https://github.com/fedora-selinux/selinux-policy.git'
git fetch --tags 'upstream'

Expand Down