Skip to content

Commit

Permalink
Create workflow to copy PR template onto Dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjam committed Nov 2, 2022
1 parent 7fdb746 commit e5410ef
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/copy-pr-template-to-dependabot-prs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
jobs:
copy_pr_template:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3

- name: Fetch PR template
id: fetch-pr-template
uses: juliangruber/read-file-action@v1
with:
path: .github/pull_request_template.md

- name: Create comment
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.number }}
body: ${{ steps.fetch-pr-template.outputs.content }}

0 comments on commit e5410ef

Please sign in to comment.