We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb113fe commit 6a663b9Copy full SHA for 6a663b9
.github/workflows/dependencies-pr.yml
@@ -0,0 +1,17 @@
1
+name: Dependencies PR
2
+
3
+on:
4
+ pull_request_target:
5
+ types: [opened, reopened, synchronize]
6
7
+jobs:
8
+ call-reusable-workflow:
9
+ if: github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]'
10
+ uses: codeforjapan/org-actions/.github/workflows/slack-bot-pr.yml@main
11
+ with:
12
+ repo_name: ${{ github.event.repository.name }}
13
+ pr_title: ${{ github.event.pull_request.title }}
14
+ pr_url: ${{ github.event.pull_request.html_url }}
15
+ secrets:
16
+ slack_channel_id: ${{ secrets.SLACK_CHANNEL_ID }}
17
+ slack_bot_token: ${{ secrets.SLACK_BOT_TOKEN }}
0 commit comments