-
Notifications
You must be signed in to change notification settings - Fork 83
53 lines (44 loc) · 1.66 KB
/
psl-update.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
43
44
45
46
47
48
49
50
51
52
53
name: psl-update
on:
schedule:
# Run every hour, at the 15 minute mark. E.g.
# 2020-11-29 00:15:00 UTC, 2020-11-29 01:15:00 UTC, 2020-11-29 02:15:00 UTC
- cron: '15 * * * *'
jobs:
zcrypto-psl-update:
name: Check for publicsuffix-go data updates
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
- name: Set current date
id: get-date
run: echo "::set-output name=now::$(date +'%Y-%m-%dT%H:%M:%S %Z')"
- name: Update publicsuffix-go
run: go get -u github.com/weppos/publicsuffix-go@main
- name: Run go mod tidy
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Create pull-request
id: cpr
uses: peter-evans/create-pull-request@v3
with:
commit-message: "deps: update publicsuffix-go for ${{ steps.get-date.outputs.now }}"
title: "deps: update weppos/publicsuffix-go for ${{ steps.get-date.outputs.now }}"
body: "ZCrypto dependency update from `go get -u github.com/weppos/publicsuffix-go@master` on ${{ steps.get-date.outputs.now }}."
committer: "GitHub <[email protected]>"
author: "GitHub <[email protected]>"
labels: psl-update
branch: zcrypto-psl-update
delete-branch: true
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"