Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: CI

on:
pull_request:
# `build-site` is a required status check. PRs opened by GITHUB_TOKEN
# (notably release-please's) do not fire `pull_request`, so the check never
# reports and those PRs stay permanently BLOCKED. workflow_dispatch lets the
# run be started against the PR's branch so the required context can report.
workflow_dispatch:

permissions:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/validate-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
pull_request:
push:
branches: ["main"]
# `validate` is a required status check. PRs opened by GITHUB_TOKEN (notably
# release-please's) do not fire `pull_request`, so the check never reports and
# those PRs stay permanently BLOCKED. workflow_dispatch lets the run be
# started against the PR's branch so the required context can report.
workflow_dispatch:

permissions:
contents: read
Expand Down
Loading