2020-08-23 11:22:58 +02:00
|
|
|
name: "Checking EditorConfig"
|
|
|
|
|
2021-04-28 01:50:54 +02:00
|
|
|
permissions: read-all
|
|
|
|
|
2020-08-23 11:22:58 +02:00
|
|
|
on:
|
2021-04-28 01:50:54 +02:00
|
|
|
pull_request_target:
|
2020-10-24 04:24:25 +02:00
|
|
|
branches-ignore:
|
|
|
|
- 'release-**'
|
2020-08-23 11:22:58 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-27 09:30:10 +01:00
|
|
|
if: github.repository_owner == 'NixOS'
|
2020-08-23 11:22:58 +02:00
|
|
|
steps:
|
2020-12-27 09:30:10 +01:00
|
|
|
- name: Get list of changed files from PR
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
|
|
|
echo 'PR_DIFF<<EOF' >> $GITHUB_ENV
|
|
|
|
gh api \
|
|
|
|
repos/NixOS/nixpkgs/pulls/${{github.event.number}}/files --paginate \
|
|
|
|
| jq '.[] | select(.status != "removed") | .filename' \
|
|
|
|
>> $GITHUB_ENV
|
|
|
|
echo 'EOF' >> $GITHUB_ENV
|
2020-08-23 11:22:58 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-04-28 01:50:54 +02:00
|
|
|
with:
|
|
|
|
# pull_request_target checks out the base branch by default
|
|
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
2020-12-27 09:30:10 +01:00
|
|
|
if: env.PR_DIFF
|
2021-04-28 01:50:54 +02:00
|
|
|
- uses: cachix/install-nix-action@v13
|
2020-12-27 09:30:10 +01:00
|
|
|
if: env.PR_DIFF
|
2021-04-28 01:50:54 +02:00
|
|
|
- name: install editorconfig-checker from unstable channel
|
2020-08-23 11:22:58 +02:00
|
|
|
run: |
|
2021-04-28 01:50:54 +02:00
|
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
|
|
|
nix-channel --update
|
|
|
|
nix-env -iA nixpkgs.editorconfig-checker
|
|
|
|
if: env.PR_DIFF
|
2020-08-23 11:22:58 +02:00
|
|
|
- name: Checking EditorConfig
|
2020-12-27 09:30:10 +01:00
|
|
|
if: env.PR_DIFF
|
2020-08-23 11:22:58 +02:00
|
|
|
run: |
|
2021-04-28 01:50:54 +02:00
|
|
|
echo "$PR_DIFF" | xargs editorconfig-checker -disable-indent-size
|