Skip to content
Draft
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
18 changes: 18 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,24 @@ jobs:
labels: ['go']
})

dependabot-reminder:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
name: Dependabot Smoke Test Reminder
permissions:
pull-requests: write
steps:
- name: Comment smoke test instructions
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: '👋 **Maintainer reminder:** Smoke tests cannot run automatically on dependabot PRs due to GitHub secret restrictions.\n\nBefore merging, add the `run-smoke-tests` label and wait for the smoke tests to pass.'
});

completion-tests:
needs: [build, detect-changes]
if: needs.detect-changes.outputs.completion == 'true'
Expand Down
Loading