diff --git a/.github/workflows/ci.yml b/.github/workflows/integration.yml similarity index 88% rename from .github/workflows/ci.yml rename to .github/workflows/integration.yml index a646a20..90d5e26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/integration.yml @@ -1,12 +1,11 @@ -name: CI +name: Integration on: - push: - branches: - - master + pull_request: jobs: test: + name: Unit Tests runs-on: ubuntu-latest steps: - name: Checkout repo diff --git a/.github/workflows/test-master.yml b/.github/workflows/test-master.yml deleted file mode 100644 index ac23c4c..0000000 --- a/.github/workflows/test-master.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: "test-local" -on: - push: - branches: - - master - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Add Comment - uses: ./ - with: - message: | - **Hello MASTER!** - 🌏 - ! - repo-token: ${{ secrets.GITHUB_TOKEN }} - allow-repeats: false diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml deleted file mode 100644 index 9a58be1..0000000 --- a/.github/workflows/test-pr.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: "test-local" -on: - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Add Comment - uses: ./ - with: - message: | - **Hello PULL!** - 🌏 - ! - repo-token: ${{ secrets.GITHUB_TOKEN }} - allow-repeats: false