-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependabot commits not deploying. Closes #261
- Loading branch information
1 parent
3f93c12
commit 693902f
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# https://github.com/dependabot/dependabot-core/issues/3253#issuecomment-852541544 | ||
# This workflow doesn't have access to secrets and has a read-only token | ||
# It will trigger `deploy`, which has permissions | ||
name: Dependabot Deploy Check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-dependabot: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.actor == 'dependabot[bot]' }} | ||
steps: | ||
- run: echo "Commit created by Dependabot" |