PHP Core Roundup #5
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
name: PHP Core Roundup | |
on: | |
schedule: | |
- cron: 0 10 25 * * | |
jobs: | |
create_issue: | |
name: Create an issue with roundup checklist | |
runs-on: "ubuntu-22.04" | |
permissions: | |
issues: write | |
steps: | |
- name: Create issue | |
uses: imjohnbo/[email protected] | |
with: | |
assignees: "Ayesh, saundefined, pronskiy" | |
labels: "roundup" | |
title: "Roundup next" | |
body: | | |
- [ ] Prepare draft PR | |
- [ ] Send to #general for review | |
- [ ] Prepare tweet text | |
- [ ] Publish blog post | |
- [ ] Post announcements | |
- [ ] Mastodon | |
- [ ] Send out email newsletter | |
pinned: false | |
close-previous: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |