Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:

release:
runs-on: ubuntu-latest
# Only run Release Please on `main`. It pushes to
# `release-please--branches--main` using a GitHub App token, and App token
# pushes (unlike `GITHUB_TOKEN`) re-trigger workflows — so running this job
# on that branch makes it force-push and re-trigger itself in an infinite
# loop. The `test` and `examples` jobs still run on the release branch.
if: github.ref == 'refs/heads/main'
# Release Please is very fast, so we set a tiny timeout
timeout-minutes: 2
# The GitHub App token handles write permissions for contents and
Expand Down
Loading