Skip to content

Commit

Permalink
fix: allow well-known headers
Browse files Browse the repository at this point in the history
See: #12
  • Loading branch information
lasiar committed May 9, 2024
1 parent 585255d commit a8968c0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ name: check diff

on:
push:
tags:
- '*'

permissions:
contents: write
branches:
- 'main'
- 'v*'
pull_request:
branches:
- 'main'
- 'v*'

jobs:
goreleaser:
check_diff:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -23,7 +25,7 @@ jobs:
go-version: stable
check-latest: true

- name: Generate test
- name: Generate
run: |
make generate
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Go

on:
push:
branches: [main]
branches:
- 'main'
- 'v*'
pull_request:
branches: [main]
branches:
- 'main'
- 'v*'
schedule:
- cron: '0 8 * * 1' # run "At 08:00 on Monday"ma

Expand Down

0 comments on commit a8968c0

Please sign in to comment.