Skip to content

New post: "Not all blog posts are created equal" #376

New post: "Not all blog posts are created equal"

New post: "Not all blog posts are created equal" #376

name: "merge-pull-request"
on:
pull_request:
branches:
- main
paths:
- 'src/**'
jobs:
build:
name: Merge pull request
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'alexwlchan' && !github.event.pull_request.draft
steps:
- name: "Check out the repo"
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Merge the pull request
run: |
python3 -m pip install httpx
python3 .github/workflows/merge_pull_request.py
# Note: this uses a personal access token, not the default GitHub token;
# this is so that GitHub will build the resulting merged commit to main.
# See https://github.com/ad-m/github-push-action/issues/32
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}