From f6e3e202c692126608e57cbe532f9d51671a6e36 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Fri, 18 Jun 2021 03:32:32 +0200 Subject: [PATCH 1/2] Delete CI-linpeas_prod.yml --- .github/workflows/CI-linpeas_prod.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/CI-linpeas_prod.yml diff --git a/.github/workflows/CI-linpeas_prod.yml b/.github/workflows/CI-linpeas_prod.yml deleted file mode 100644 index 3cbef18..0000000 --- a/.github/workflows/CI-linpeas_prod.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: CI-linpeas_prod - -on: - pull_request: - branches: - - linpeas_prod - - workflow_dispatch: - -jobs: - Test_linpeas_ubuntu: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Run linpeas - run: linPEAS/linpeas.sh - - Test_linpeas_macos: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - - name: Run linpeas - run: linPEAS/linpeas.sh From 1de809c83c0cccdcd4b0e58f04b4725763c70d22 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Fri, 18 Jun 2021 03:36:14 +0200 Subject: [PATCH 2/2] flows --- .github/workflows/CI-linpeas_master.yml | 20 ++++++++++++++++++ .github/workflows/CI-linpeas_prod.yml | 27 +++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/workflows/CI-linpeas_master.yml create mode 100644 .github/workflows/CI-linpeas_prod.yml diff --git a/.github/workflows/CI-linpeas_master.yml b/.github/workflows/CI-linpeas_master.yml new file mode 100644 index 0000000..143dc3c --- /dev/null +++ b/.github/workflows/CI-linpeas_master.yml @@ -0,0 +1,20 @@ +name: CI-linpeas_master + +on: + push: + branches: + - linpeas_prod + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: actions/checkout@v2 + - name: pull-request + uses: repo-sync/pull-request@v2 + with: + destination_branch: "master" + github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/CI-linpeas_prod.yml b/.github/workflows/CI-linpeas_prod.yml new file mode 100644 index 0000000..a40fa86 --- /dev/null +++ b/.github/workflows/CI-linpeas_prod.yml @@ -0,0 +1,27 @@ +name: CI-linpeas_prod + +on: + pull_request: + branches: + - linpeas_prod + + workflow_dispatch: + +jobs: + Test_Linpeas_MacOS: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run linpeas + run: linPEAS/linpeas.sh + + Test_Linpeas_Ubuntu: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run linpeas + run: linPEAS/linpeas.sh \ No newline at end of file