Open Source Friday - Just a Job App - 07-25-25 #510
This file contains hidden or 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
| name: Remind Hosts | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| remind-hosts: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'scheduled' | |
| steps: | |
| - name: Comment on issue | |
| uses: actions/github-script@v5 | |
| with: | |
| github-token: ${{secrets.GITHUB_TOKEN}} | |
| script: | | |
| const issueComment = { | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: `Hi @LadyKerr and @AndreaGriffiths11,\n\nThis stream has been scheduled. Please complete the following tasks:\n\n- [ ] Create social card\n- [ ] Create meetup link\n- [ ] Create and schedule twitch stream (Linkedin, Twitch, Youtube)\n- [ ] Schedule social media post (Twitter)\n- [ ] Send prep doc to guests\n\nYou can find the instructions in this [guide](https://github.com/githubevents/open-source-friday/blob/main/admin/guest-assets/Streaming-Guide.md).` | |
| }; github.rest.issues.createComment(issueComment); |