Skip to content

Commit

Permalink
CICD: Ensure that the changes from go generate are included in the …
Browse files Browse the repository at this point in the history
…original pull requests.
  • Loading branch information
cafferata committed Jan 26, 2024
1 parent f010c1b commit 151dba3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr_check_git_status.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "PR: Check git status"
on:
push:
branches:
- 'tlim_testpr'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
- run: echo "xxx" >> commands/types/dnscontrol.d.ts
- uses: CatChen/check-git-status-action@v1
with:
fail-if-not-clean: true
request-changes-if-not-clean: true

0 comments on commit 151dba3

Please sign in to comment.