We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 906eb62 commit ac194c1Copy full SHA for ac194c1
.github/workflows/update-istio.yaml
@@ -23,6 +23,9 @@ jobs:
23
- name: Check for updates
24
id: check
25
run: |
26
+ git config user.name github-actions
27
+ git config user.email [email protected]
28
+
29
curl -sL https://istio.io/downloadIstio | sh -
30
ISTIO_DIR=$(find . -name 'istio-*' -type d -maxdepth 1 -print | head -n1)
31
ISTIO_VER=${ISTIO_DIR##./istio-}
@@ -44,6 +47,8 @@ jobs:
44
47
if: steps.check.outputs.version
45
48
with:
46
49
token: ${{ secrets.GH_ADMIN_TOKEN }}
50
+ committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
51
+ author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
52
commit-message: Update Istio to ${{ steps.check.outputs.version }}
53
title: Update Istio to ${{ steps.check.outputs.version }}
54
body: |
0 commit comments