Skip to content

docs: update @hferguson as a contributor #323

docs: update @hferguson as a contributor

docs: update @hferguson as a contributor #323

name: Intro Course Contributor Action
on:
pull_request_target:
types:
- opened
permissions:
pull-requests: write
jobs:
intro_course_contributor:
runs-on: ubuntu-latest
steps:
- name: Post comment for course contributors
if: contains(github.event.pull_request.title, 'as a contributor')
run: |
PR_COMMENT="Congratulations on completing the How to Contribute to Open Source chapter of the Intro to Open Source Course with your contribution to this repository, @${{ github.actor }}! You're almost to the end of the course. Create a [highlight](https://app.opensauced.pizza/feed) of your contribution to our guestbook using the instructions in the [next chapter](https://github.com/open-sauced/intro/blob/main/docs/intro-to-oss/the-secret-sauce.md) and share it with us!"
curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -X POST -d "{\"body\":\"$PR_COMMENT\"}" "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"