deps(example): Bump @arcjet/next from 1.0.0-alpha.29 to 1.0.0-alpha.3… #1054
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: Push | |
on: | |
push: | |
# Only ever run `push` events against protected branches, likely just `main` | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run tests | |
uses: ./.github/workflows/reusable-test.yml | |
examples: | |
name: Build examples | |
uses: ./.github/workflows/reusable-examples.yml | |
release: | |
runs-on: ubuntu-latest | |
# Release Please is very fast, so we set a tiny timeout | |
timeout-minutes: 1 | |
# Release Please creates a Pull Request with changes to files | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Release Please | |
uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config-file: .github/release-please-config.json | |
manifest-file: .github/.release-please-manifest.json |