Add a Caddyfile for running alexwlchan.net #358
Workflow file for this run
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: "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 }} |