Skip to content

Commit f5f9ac3

Browse files
authored
chore(GAT-1234): added condition to skip generating the github token for dependabot PR's (#1598)
1 parent 6e5ac35 commit f5f9ac3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/e2e-isolated.yml

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

145145
- name: Generate GitHub App token
146+
if: ${{ !startsWith(github.actor, 'dependabot') }}
146147
id: generate-deployment-token
147-
uses: actions/create-github-app-token@v2
148+
uses: actions/create-github-app-token@v3
148149
with:
149150
app-id: ${{ secrets.DEPLOY_APP_ID }}
150151
private-key: ${{ secrets.DEPLOY_APP_PRIVATE_KEY }}

0 commit comments

Comments
 (0)