From Discord: Customizing Help Format in Effect Typescript Library CLI #9440
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: Release queue | |
on: | |
issue_comment: | |
types: [created] | |
pull_request_target: | |
branches: [main, next-minor, next-major] | |
push: | |
branches: [main, next-minor, next-major] | |
permissions: {} | |
jobs: | |
update: | |
if: github.repository_owner == 'Effect-Ts' | |
name: Update | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.EFFECT_BOT_GH }} | |
- run: gh pr checkout ${{ github.event.pull_request.number }} | |
if: github.event.pull_request | |
env: | |
GITHUB_TOKEN: ${{ secrets.EFFECT_BOT_GH }} | |
- uses: tim-smart/next-release-action@main | |
with: | |
github_token: ${{ secrets.EFFECT_BOT_GH }} | |
packages: effect,@effect/platform | |
git_user: effect-bot | |
git_email: tech-ops@effectful.co |