2024-10-26 13:23:06 +00:00
name : "Checking EditorConfig v2"
2020-08-23 09:22:58 +00:00
2024-10-26 13:03:37 +00:00
permissions :
pull-requests : read
contents : read
2021-04-27 23:50:54 +00:00
2020-08-23 09:22:58 +00:00
on :
2021-04-28 18:07:05 +00:00
# avoids approving first time contributors
2021-04-27 23:50:54 +00:00
pull_request_target :
2020-10-24 02:24:25 +00:00
branches-ignore :
- 'release-**'
2020-08-23 09:22:58 +00:00
jobs :
tests :
2024-08-01 03:28:40 +00:00
name : editorconfig-check
2020-08-23 09:22:58 +00:00
runs-on : ubuntu-latest
2023-01-20 23:19:18 +00:00
if : "github.repository_owner == 'NixOS' && !contains(github.event.pull_request.title, '[skip treewide]')"
2020-08-23 09:22:58 +00:00
steps :
2021-11-30 00:36:50 +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-01 05:27:57 +00:00
> "$HOME/changed_files"
- name : print list of changed files
run : |
cat "$HOME/changed_files"
2024-10-28 11:50:56 +00:00
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2021-11-30 00:36:50 +00:00
with :
# pull_request_target checks out the base branch by default
ref : refs/pull/${{ github.event.pull_request.number }}/merge
2024-10-07 11:17:58 +00:00
- uses : cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2021-04-28 18:07:05 +00:00
with :
# nixpkgs commit is pinned so that it doesn't break
2021-12-14 03:19:39 +00:00
# editorconfig-checker 2.4.0
nix_path : nixpkgs=https://github.com/NixOS/nixpkgs/archive/c473cc8714710179df205b153f4e9fa007107ff9.tar.gz
2020-08-23 09:22:58 +00:00
- name : Checking EditorConfig
run : |
2023-02-28 19:17:29 +00:00
cat "$HOME/changed_files" | nix-shell -p editorconfig-checker --run 'xargs -r editorconfig-checker -disable-indent-size'
2021-04-28 17:58:29 +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."