allow crlf characters in base64 encoded strings (#3623) #6049
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 | |
- run: gh pr checkout ${{ github.event.pull_request.number }} | |
if: github.event.pull_request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: tim-smart/next-release-action@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
packages: effect,@effect/schema,@effect/platform |