Create ReleaseIssue #7
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: Create ReleaseIssue | |
on: | |
schedule: | |
# 1月/7月にリリース | |
- cron: "0 0 1 */6 *" | |
jobs: | |
create_issue: | |
name: Create ReleaseIssue | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Create team sync issue | |
uses: imjohnbo/[email protected] | |
with: | |
assignees: "azu" | |
labels: "Type: Release" | |
title: "Next Release" | |
body: | | |
### 次のリリースの準備ができました | |
- [ ] マージ忘れのPRがないかを確認 | |
- [ ] Version PackagesのPRをマージ | |
- [ ] 新しいバージョンがリリースされたことを確認 | |
pinned: false | |
close-previous: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |