1
0
mirror of synced 2026-01-06 15:01:04 -05:00
Files
docs/.github/workflows/merged-notification.yml
Jason Etcovitch 0547215903 Remove All-Contributors (#576)
* Remove from README

* Remove from merged-notification workflow

* Remove .all-contributorsrc
2020-10-16 17:25:13 -04:00

18 lines
704 B
YAML

on:
pull_request_target:
types: ['closed']
jobs:
comment:
if: github.event.repository.private == false && github.event.pull_request.merged && github.event.pull_request.base.ref == github.event.repository.default_branch
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
with:
script: |
github.issues.createComment({
...context.repo,
issue_number: context.payload.pull_request.number,
body: 'Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours.'
})