Skip to content

Put Further reading after chapter closing copy #160

Put Further reading after chapter closing copy

Put Further reading after chapter closing copy #160

Workflow file for this run

name: Auto Merge
# Only PRs labeled ship-auto-merge (added by /ship) get auto-merge — not every open PR.
# Create the label in GitHub (Settings → Labels) before first use.
# Job-level label gate: unlabeled PRs skip with ZERO billed runner minutes (label is in
# the webhook payload — no gh API round-trip).
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
permissions:
contents: write
pull-requests: write
issues: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: >-
github.event.pull_request.draft == false &&
github.event.pull_request.head.repo.full_name == github.repository &&
contains(github.event.pull_request.labels.*.name, 'ship-auto-merge')
steps:
- name: Enable auto-merge when orchestrated
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
run: gh pr merge --auto --squash --repo "$GITHUB_REPOSITORY" "$PR_NUMBER"