Skip to content

Commit a8968c0

Browse files
committed
fix: allow well-known headers
See: #12
1 parent 585255d commit a8968c0

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

.github/workflows/diff.yaml

+9-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@ name: check diff
22

33
on:
44
push:
5-
tags:
6-
- '*'
7-
8-
permissions:
9-
contents: write
5+
branches:
6+
- 'main'
7+
- 'v*'
8+
pull_request:
9+
branches:
10+
- 'main'
11+
- 'v*'
1012

1113
jobs:
12-
goreleaser:
14+
check_diff:
1315
runs-on: ubuntu-latest
1416
steps:
1517
- name: Checkout
@@ -23,7 +25,7 @@ jobs:
2325
go-version: stable
2426
check-latest: true
2527

26-
- name: Generate test
28+
- name: Generate
2729
run: |
2830
make generate
2931

.github/workflows/go.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Go
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- 'main'
7+
- 'v*'
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- 'main'
11+
- 'v*'
812
schedule:
913
- cron: '0 8 * * 1' # run "At 08:00 on Monday"ma
1014

0 commit comments

Comments
 (0)