summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-05-22 14:15:13 +0100
committerGitHub <noreply@github.com>2020-05-22 13:15:13 +0000
commit1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac (patch)
treec89bdb737a9960a88103858afa0d7cc303aa8ecb /.github/workflows
parent9404c8ee74ebaf36fbd5a1dbb2fe1e7950424586 (diff)
downloadnixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar.gz
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar.bz2
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar.lz
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar.xz
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.tar.zst
nixpkgs-1ccf44204bb15d6e4fd6155a971e3a6fbf95e8ac.zip
actions/editorconfig: disable until we can combine this with ofborg (#88608)
We cannot run this check now, as it marks CI as green even though ofborg has not
evaluated it yet. In future we might be able to mark ofborg as a required test:
https://github.com/NixOS/nixpkgs/pull/87853#issuecomment-632676824
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/editorconfig.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/editorconfig.yml b/.github/workflows/editorconfig.yml
deleted file mode 100644
index 9e8a1bd97db..00000000000
--- a/.github/workflows/editorconfig.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: actions
-
-on:
-  pull_request:
-    branches:
-      - master
-
-jobs:
-  editorconfig:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v2
-    - uses: technote-space/get-diff-action@v1.2.8
-    - name: editorconfig check
-      env:
-        VERSION: "2.0.4"
-        OS: "linux"
-        ARCH: "amd64"
-      run: |
-        curl -sSf -O -L -C - https://github.com/editorconfig-checker/editorconfig-checker/releases/download/$VERSION/ec-$OS-$ARCH.tar.gz && \
-        tar xzf ec-$OS-$ARCH.tar.gz && \
-        ./bin/ec-$OS-$ARCH -disable-indentation ${{ env.GIT_DIFF }}