-
-
Notifications
You must be signed in to change notification settings - Fork 531
35 lines (33 loc) · 934 Bytes
/
release-queue.yml
File metadata and controls
35 lines (33 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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