From f5e5f63a02d266ef289a7eae8228add8e54f1d55 Mon Sep 17 00:00:00 2001 From: DevFest AWS BugBust <90268026+devfest-bugbust@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:02:10 +0100 Subject: [PATCH 1/5] test change --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c13607c3db..a9646c35da 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,3 +92,5 @@ TODO See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes. + + From f4249cedd78321d567f91381839edff2b0a3f643 Mon Sep 17 00:00:00 2001 From: DevFest AWS BugBust <90268026+devfest-bugbust@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:09:39 +0100 Subject: [PATCH 2/5] make on-push run on pr open --- .github/workflows/on-push.yml | 2 ++ CONTRIBUTING.md | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index e7982a8e94..6f0b57f05d 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -4,6 +4,8 @@ on: branches: - '**' # matches every branch - '!main' + pull_request: + types: [opened, edited] jobs: on_push: runs-on: ubuntu-latest diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a9646c35da..c13607c3db 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,5 +92,3 @@ TODO See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes. - - From ab7b39317747ebb99708f7a6952c501759b76ca5 Mon Sep 17 00:00:00 2001 From: DevFest AWS BugBust <90268026+devfest-bugbust@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:13:01 +0100 Subject: [PATCH 3/5] force change --- NOTICE | 1 + 1 file changed, 1 insertion(+) diff --git a/NOTICE b/NOTICE index 616fc58894..cbf924b82a 100644 --- a/NOTICE +++ b/NOTICE @@ -1 +1,2 @@ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + From ca3e068b4087c406451f6a708da0dadf15b1f405 Mon Sep 17 00:00:00 2001 From: DevFest AWS BugBust <90268026+devfest-bugbust@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:22:06 +0100 Subject: [PATCH 4/5] change trigger for lint and test --- .github/workflows/{on-push.yml => pr-lint-and-test.yml} | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) rename .github/workflows/{on-push.yml => pr-lint-and-test.yml} (92%) diff --git a/.github/workflows/on-push.yml b/.github/workflows/pr-lint-and-test.yml similarity index 92% rename from .github/workflows/on-push.yml rename to .github/workflows/pr-lint-and-test.yml index 6f0b57f05d..fe6c3801b6 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/pr-lint-and-test.yml @@ -1,9 +1,5 @@ -name: on-push-event +name: pr-lint-and-test on: - push: - branches: - - '**' # matches every branch - - '!main' pull_request: types: [opened, edited] jobs: From 443ae733e734023b06dc3ad8bb75471f3743d177 Mon Sep 17 00:00:00 2001 From: DevFest AWS BugBust <90268026+devfest-bugbust@users.noreply.github.com> Date: Fri, 14 Jan 2022 09:27:58 +0100 Subject: [PATCH 5/5] chore(cicd): fix pr updated trigger --- .github/workflows/pr-lint-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-lint-and-test.yml b/.github/workflows/pr-lint-and-test.yml index fe6c3801b6..1e1b397352 100644 --- a/.github/workflows/pr-lint-and-test.yml +++ b/.github/workflows/pr-lint-and-test.yml @@ -1,7 +1,7 @@ name: pr-lint-and-test on: pull_request: - types: [opened, edited] + types: [opened, synchronize] jobs: on_push: runs-on: ubuntu-latest