diff --git a/.github/workflows/pr_check_git_status.yml b/.github/workflows/pr_check_git_status.yml new file mode 100644 index 0000000000..2ce198fe71 --- /dev/null +++ b/.github/workflows/pr_check_git_status.yml @@ -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