test: ignore me #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
types: [closed] | |
permissions: write-all | |
jobs: | |
send-message: | |
# if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'rice-setup') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: "hackclub", | |
repo: "riceathon", | |
body: '👋 Thanks for your PR!\nTo claim your free socks fill out this [form](https://forms.hackclub.com/t/joD554Crhsus)' | |
}) |