From 1eed73af48d537debbd31440a784cfa6e4f18bf5 Mon Sep 17 00:00:00 2001 From: Torsten Curdt Date: Thu, 5 Nov 2020 12:52:50 +0100 Subject: [PATCH] proper directory --- .github/{ => workflows}/ci.yml | 0 .github/{ => workflows}/cleanup.yml | 0 .github/{ => workflows}/dockerhub.yml | 0 .github/workflows/main.yml | 33 --------------------------- .github/{ => workflows}/npm.yml | 0 5 files changed, 33 deletions(-) rename .github/{ => workflows}/ci.yml (100%) rename .github/{ => workflows}/cleanup.yml (100%) rename .github/{ => workflows}/dockerhub.yml (100%) delete mode 100644 .github/workflows/main.yml rename .github/{ => workflows}/npm.yml (100%) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 100% rename from .github/ci.yml rename to .github/workflows/ci.yml diff --git a/.github/cleanup.yml b/.github/workflows/cleanup.yml similarity index 100% rename from .github/cleanup.yml rename to .github/workflows/cleanup.yml diff --git a/.github/dockerhub.yml b/.github/workflows/dockerhub.yml similarity index 100% rename from .github/dockerhub.yml rename to .github/workflows/dockerhub.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index e0e3fb6e..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. diff --git a/.github/npm.yml b/.github/workflows/npm.yml similarity index 100% rename from .github/npm.yml rename to .github/workflows/npm.yml