We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a50b44a commit 98a2019Copy full SHA for 98a2019
.github/workflows/sync-starter.yml
@@ -37,7 +37,16 @@ jobs:
37
printf '\n\n' | .devcontainer/magento2-devcontainer/bin/init.sh
38
39
- name: Commit and push
40
+ env:
41
+ GRAYBOT_GPG_KEY: ${{ secrets.GRAYBOT_GPG_KEY }}
42
run: |
43
+ echo "$GRAYBOT_GPG_KEY" | gpg --batch --import
44
+ export GPG_KEY_ID=$(gpg --list-secret-keys --keyid-format LONG | grep sec | awk '{print $2}' | cut -d/ -f2)
45
+
46
+ git config --global user.signingkey $GPG_KEY_ID
47
+ git config --global commit.gpgSign true
48
+ git config --global user.email "automation@graycore.io"
49
+ git config --global user.name "Beep Boop"
50
git add -A
51
if ! git diff --staged --quiet; then
52
git commit -m "chore: sync devcontainer ${GITHUB_SHA::7}"
0 commit comments