Skip to content

Commit 9444533

Browse files
committed
added condition to skip generating the github token for dependabot PR's
1 parent 65603ce commit 9444533

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/e2e-isolated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/checkout@v4
144144

145145
- name: Generate GitHub App token
146-
if: ${{ !startsWith(github.actor, 'dependabot') }}
146+
if: ${{ github.actor != 'dependabot[bot]' }}
147147
id: generate-deployment-token
148148
uses: actions/create-github-app-token@v3
149149
with:

0 commit comments

Comments
 (0)