From e495630804dd7311f66fc5bb11b82f5d47140039 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Fri, 18 Jun 2021 02:55:40 +0200 Subject: [PATCH] flows --- .../{linpeas-development.yml => CI-linpeas_dev.yml} | 6 +++--- .../workflows/{linpeas-master.yml => CI-linpeas_prod.yml} | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{linpeas-development.yml => CI-linpeas_dev.yml} (96%) rename .github/workflows/{linpeas-master.yml => CI-linpeas_prod.yml} (92%) diff --git a/.github/workflows/linpeas-development.yml b/.github/workflows/CI-linpeas_dev.yml similarity index 96% rename from .github/workflows/linpeas-development.yml rename to .github/workflows/CI-linpeas_dev.yml index 239563f..c14cf9b 100644 --- a/.github/workflows/linpeas-development.yml +++ b/.github/workflows/CI-linpeas_dev.yml @@ -1,15 +1,15 @@ # This is a basic workflow to help you get started with Actions -name: CI-linpeas-ubuntu +name: CI-linpeas_dev # Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: - - 'linpeas-dev' + - 'linpeas_dev' paths: - - '!**linpeas.sh' + - '!linPEAS/linpeas.sh' # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/linpeas-master.yml b/.github/workflows/CI-linpeas_prod.yml similarity index 92% rename from .github/workflows/linpeas-master.yml rename to .github/workflows/CI-linpeas_prod.yml index 0f0b173..730072e 100644 --- a/.github/workflows/linpeas-master.yml +++ b/.github/workflows/CI-linpeas_prod.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: CI-Pro +name: CI-linpeas_prod # Controls when the action will run. on: @@ -15,7 +15,7 @@ on: # 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" - Run_on_ubuntu: + Test_linpeas_ubuntu: # The type of runner that the job will run on runs-on: ubuntu-latest @@ -28,7 +28,7 @@ jobs: - name: Run linpeas run: linPEAS/linpeas.sh - Run_on_macos: + Test_linpeas_macos: runs-on: macos-latest # Steps represent a sequence of tasks that will be executed as part of the job