From a2f18f9bdafe2607262d53aa72ededef68e6900d Mon Sep 17 00:00:00 2001 From: Samuel Bodin <1637651+bodinsamuel@users.noreply.github.com> Date: Fri, 3 Nov 2023 18:06:24 +0100 Subject: [PATCH] test something else --- .github/workflows/ci.yaml | 6 +++++- .github/workflows/local-github-action.yaml | 10 +++++++--- .github/workflows/published-github-action.yaml | 10 +++++++--- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3a2e4c5..275c3db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,5 +1,9 @@ name: Main -on: [push, pull_request] +on: + push: + branches: [ main ] + pull_request: + types: [opened, synchronize] jobs: ci: diff --git a/.github/workflows/local-github-action.yaml b/.github/workflows/local-github-action.yaml index 93f0e51..71d3bac 100644 --- a/.github/workflows/local-github-action.yaml +++ b/.github/workflows/local-github-action.yaml @@ -1,8 +1,12 @@ -name: Test GitHub Action -on: [push, pull_request] +name: Test Local GitHub Action +on: + push: + branches: [ main ] + pull_request: + types: [opened, synchronize] jobs: - test_github_action: + test_local_github_action: container: node:20.9.0@sha256:62efd17e997bc843aefa4c003ed84f43dfac83fa6228c57c898482e50a02e45c runs-on: ubuntu-latest timeout-minutes: 10 diff --git a/.github/workflows/published-github-action.yaml b/.github/workflows/published-github-action.yaml index a000b9f..f2b0791 100644 --- a/.github/workflows/published-github-action.yaml +++ b/.github/workflows/published-github-action.yaml @@ -1,8 +1,12 @@ -name: Test GitHub Action -on: [push, pull_request] +name: Test Published GitHub Action +on: + push: + branches: [ main ] + pull_request: + types: [opened, synchronize] jobs: - test_github_action: + test_published_github_action: container: node:20.9.0@sha256:62efd17e997bc843aefa4c003ed84f43dfac83fa6228c57c898482e50a02e45c runs-on: ubuntu-latest timeout-minutes: 10