diff options
author | Fausto Núñez Alberro <fausto.nunez@mailbox.org> | 2021-02-06 01:55:38 +0100 |
---|---|---|
committer | Fausto Núñez Alberro <fausto.nunez@mailbox.org> | 2021-02-06 01:55:38 +0100 |
commit | 71ca2d57c947e2ff8f4e2d201e81380d11e71bbf (patch) | |
tree | aaba33a193cb61fab10a8a4ba5da9bbc61f27b90 | |
parent | a4dddec3bb8ea033d2905ef5ee704ec234351937 (diff) |
Fix the PR check script
-rw-r--r-- | .github/pull_request_template.md | 2 | ||||
-rw-r--r-- | .github/workflows/pr.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d8e1e7b..0263490 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,6 +6,6 @@ Fixes #ISSUE_NUMBER # Checklist -- [ ] I have built the project after my changes following [the build instructions](https://github.com/fnune/base16-vim#building) using `make build` +- [ ] I have built the project after my changes following [the build instructions](https://github.com/fnune/base16-vim#building) using `make` - [ ] I have confirmed that my changes produce no regressions after building - [ ] I have pushed the built files to this pull request diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f5e8385..b916f97 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -17,7 +17,7 @@ jobs: run: pip install pybase16-builder - name: Fetch the repository code uses: actions/checkout@v2 - - name: Run make build - run: make build + - name: Run make + run: make - name: Check if there are changes run: git diff --exit-code |