-
Notifications
You must be signed in to change notification settings - Fork 11
42 lines (40 loc) · 1.24 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: build https://html-now.github.io/
on:
schedule:
- cron: '19 2 * * *'
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '19'
- name: Run https://html-now.github.io/ build
id: incoming
run: |
make -B
- uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Create pull request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
title: Update https://html-now.github.io/
commit-message: Update https://html-now.github.io/
committer: sideshowbarkerbot <sideshowbarker+sideshowbarkerbot@gmail.com>
author: sideshowbarkerbot <sideshowbarker+sideshowbarkerbot@gmail.com>
assignees: sideshowbarker
reviewers: sideshowbarker
branch: create-pull-request/patch-site
delete-branch: true
- name: Log pull request URL
run: |
echo "Pull request URL: ${{ steps.cpr.outputs.pull-request-url }}"