Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
jobs:
notify-checks:
runs-on: ubuntu-latest

if: github.actor == 'dependabot[bot]'
steps:
- name: Get PR Information
if: github.actor == 'dependabot[bot]'
id: get-pr-info
uses: actions/github-script@v6
with:
Expand Down Expand Up @@ -111,11 +111,11 @@ jobs:
}

- name: Send Slack Notification for Success
if: env.SHOULD_NOTIFY == 'true' && env.ALL_CHECKS_STATUS == 'success'
if: env.SHOULD_NOTIFY == 'true' && env.ALL_CHECKS_STATUS == 'success' && github.actor == 'dependabot[bot]'
id: slack
uses: slackapi/[email protected]
with:
channel-id: 'C012YFE3D6D'
channel-id: 'C08TLGVQ6V8'
slack-message: |
Repository: ${{ github.repository }}
Title: ${{ env.PR_TITLE }}
Expand Down
Loading