Skip to content

feat(webhook): warn on unauthenticated webhook calls #9699

feat(webhook): warn on unauthenticated webhook calls

feat(webhook): warn on unauthenticated webhook calls #9699

Workflow file for this run

name: golangci-lint
on:
schedule:
- cron: '0 5 * * *'
pull_request:
permissions:
contents: read
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: recursive
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version-file: 'go.mod'
cache: false
- name: Generate Golang
run: |
export PATH=$PATH:/home/runner/go/bin/
- name: golangci-lint
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0
with:
# Required: the version of golangci-lint is required; we pin a specific patch version for reproducible results.
version: v2.12.2
args: --timeout=10m --config=.golangci.json
# Optional: show only new issues if it's a pull request. The default value is `false`.
# The condition sets this to true for PR events.
only-new-issues: "${{ github.event_name == 'pull_request'}}"
skip-cache: true