Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking β€œSign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): use correct dependabot user for checks #2348

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/triage-prs.yaml
Original file line number Diff line number Diff line change
@@ -12,7 +12,8 @@ permissions:
jobs:
pull-requests-comment:
name: Comment and Triage
if: github.repository == 'kanisterio/kanister' && github.actor != 'dependabot'
# The entire job is skipped for @dependabot
if: github.repository == 'kanisterio/kanister' && github.actor != 'dependabot[bot]'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got dependabot[bot] from the examples in the documentation, not 100% sure this is correct. We'll know after merging.

permissions:
pull-requests: write
runs-on: ubuntu-latest
@@ -33,7 +34,7 @@ jobs:
uses: alex-page/github-project-automation-plus@v0.8.3
# This only works for PRs opened in the same repo and not by dependabot.
# Other PRs don't get the necessary credentials.
if: github.repository == 'kanisterio/kanister' && !github.event.pull_request.head.repo.fork && github.actor != 'dependabot'
if: github.repository == 'kanisterio/kanister' && !github.event.pull_request.head.repo.fork
with:
repo-token: ${{ secrets.GH_TOKEN }}
project: Kanister