2020-09-25 04:45:31 +00:00
name : "Checking EditorConfig"
2021-05-03 20:48:10 +00:00
permissions : read-all
2020-09-25 04:45:31 +00:00
on :
2021-05-03 20:48:10 +00:00
# avoids approving first time contributors
pull_request_target :
2020-11-12 09:05:59 +00:00
branches-ignore :
- 'release-**'
2020-09-25 04:45:31 +00:00
jobs :
tests :
2024-09-19 14:19:46 +00:00
name : editorconfig-check
2020-09-25 04:45:31 +00:00
runs-on : ubuntu-latest
2023-02-02 18:25:31 +00:00
if : "github.repository_owner == 'NixOS' && !contains(github.event.pull_request.title, '[skip treewide]')"
2020-09-25 04:45:31 +00:00
steps :
2020-12-29 15:07:52 +00:00
- name : Get list of changed files from PR
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
run : |
gh api \
repos/NixOS/nixpkgs/pulls/${{github.event.number}}/files --paginate \
| jq '.[] | select(.status != "removed") | .filename' \
2021-12-06 16:07:01 +00:00
> "$HOME/changed_files"
- name : print list of changed files
run : |
cat "$HOME/changed_files"
2024-07-01 15:47:52 +00:00
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2021-05-03 20:48:10 +00:00
with :
# pull_request_target checks out the base branch by default
ref : refs/pull/${{ github.event.pull_request.number }}/merge
2024-07-27 06:49:29 +00:00
- uses : cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
2021-05-03 20:48:10 +00:00
with :
# nixpkgs commit is pinned so that it doesn't break
2021-12-19 01:06:50 +00:00
# editorconfig-checker 2.4.0
nix_path : nixpkgs=https://github.com/NixOS/nixpkgs/archive/c473cc8714710179df205b153f4e9fa007107ff9.tar.gz
2020-09-25 04:45:31 +00:00
- name : Checking EditorConfig
run : |
2023-03-04 12:14:45 +00:00
cat "$HOME/changed_files" | nix-shell -p editorconfig-checker --run 'xargs -r editorconfig-checker -disable-indent-size'
2021-05-03 20:48:10 +00:00
- if : ${{ failure() }}
run : |
echo "::error :: Hey! It looks like your changes don't follow our editorconfig settings. Read https://editorconfig.org/#download to configure your editor so you never see this error again."