Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
fanny-jiang committed Dec 29, 2023
1 parent bd12d5b commit 6b8893c
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/release-community-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,11 @@ jobs:
mkdir operators/datadog-operator/test-version
cp -R ./tmp/bundle/* operators/datadog-operator/test-version
- name: Configure git user
env:
GITHUB_USERNAME: ${{vars.GITHUB_TRIGGERING_ACTOR}}
GITHUB_USER_ID: ${{vars.GITHUB_ACTOR_ID}}
GITHUB_ACTOR: ${{vars.GITHUB_ACTOR}}
run: |
echo "Github TRIGGERING ACTOR: $GITHUB_USERNAME"
echo "Github ACTOR ID: $GITHUB_USER_ID"
echo "Github ACTOR: $GITHUB_ACTOR"
git config user.name $GITHUB_USERNAME
git config user.email $GITHUB_USER_ID+$GITHUB_USERNAME@users.noreply.github.com
echo "Github ACTOR: ${{ github.actor }}"
echo "Github ACTOR ID: ${{ github.actor_id }}"
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com
- name: create PR
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
Expand Down

0 comments on commit 6b8893c

Please sign in to comment.