This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
Fix NULL string when scanning db for public links #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Changelog | |
on: | |
pull_request: | |
paths-ignore: | |
- ".github/**" | |
- "Makefile" | |
- "tools/**" | |
- "docs/**" | |
- "tests/**" | |
- ".drone.star" | |
- ".drone.env" | |
- ".fossa.yml" | |
- "go.mod" | |
- "go.sum" | |
jobs: | |
check-changelog: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
- name: Check changelog | |
run: make check-changelog | |
env: | |
PR: ${{ github.event.pull_request.number }} |