From d96a14e03ac6d04bc26e5913978d13b6f2414e4e Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:25:32 -0400 Subject: [PATCH 01/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index afb3fa0..582be4c 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ asdeed +test3 From 8fe2474d6b278617b9571bf3c8fefa91fa17ac6e Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:17:41 -0400 Subject: [PATCH 02/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 582be4c..a322150 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ asdeed test3 +test From c4c74f9aa41f61704b6227136b43c6358f5709b1 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:00:52 -0400 Subject: [PATCH 03/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a322150..50a052b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ asdeed test3 test +test4 From 561b7e634bcd0ce89e2dc00552fadd1440f1ce12 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:38:05 -0400 Subject: [PATCH 04/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 50a052b..65d7159 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,4 @@ asdeed test3 test test4 +test5 From f7dcc2d4ed113219757c8313dcbdc8b1ac38efdf Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:22:32 -0500 Subject: [PATCH 05/30] Create manual.yml --- .github/workflows/manual.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/manual.yml diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 0000000..11b2e35 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# 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 "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" From 9fe6c1a55177bcd3b20f77ffbe0f18ce29ab2e1c Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:01:58 -0500 Subject: [PATCH 06/30] Create cloudbuild.yaml --- cloudbuild.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cloudbuild.yaml diff --git a/cloudbuild.yaml b/cloudbuild.yaml new file mode 100644 index 0000000..442aa2f --- /dev/null +++ b/cloudbuild.yaml @@ -0,0 +1,5 @@ +steps: + - name: bash + args: + - echo + - Hello World! From ba6c5606104d11bb93616847b337b38a00ebac91 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 21 Feb 2024 14:57:32 -0500 Subject: [PATCH 07/30] Create test.py --- test.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..718f4d2 --- /dev/null +++ b/test.py @@ -0,0 +1 @@ +t From 9d42caac1a6acf093a2258af034e29bf72e5e4f1 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:56:22 -0500 Subject: [PATCH 08/30] Create greenting.yml --- .github/workflows/greenting.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greenting.yml diff --git a/.github/workflows/greenting.yml b/.github/workflows/greenting.yml new file mode 100644 index 0000000..4677434 --- /dev/null +++ b/.github/workflows/greenting.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request" From 741cf9003996be368e7c85161232bc16af8409fd Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:15:48 -0500 Subject: [PATCH 09/30] Update manual.yml --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 11b2e35..b406573 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -1,6 +1,6 @@ # This is a basic workflow that is manually triggered -name: Manual workflow +name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. From 1206406466a46b0aba12ea47e281a5af8c0e30c4 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:16:09 -0500 Subject: [PATCH 10/30] Rename manual.yml to manual2.yml --- .github/workflows/{manual.yml => manual2.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{manual.yml => manual2.yml} (100%) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual2.yml similarity index 100% rename from .github/workflows/manual.yml rename to .github/workflows/manual2.yml From d1132618e80e51e177da52d83423e70ede95d11c Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:16:26 -0500 Subject: [PATCH 11/30] Rename manual2.yml to manual.yml --- .github/workflows/{manual2.yml => manual.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{manual2.yml => manual.yml} (100%) diff --git a/.github/workflows/manual2.yml b/.github/workflows/manual.yml similarity index 100% rename from .github/workflows/manual2.yml rename to .github/workflows/manual.yml From 9eafb485f03f68901faf8fe2bf5de6a22dc8fdf0 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:16:58 -0500 Subject: [PATCH 12/30] Update manual.yml --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index b406573..d29dde4 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -12,7 +12,7 @@ on: # Friendly description to be shown in the UI instead of 'name' description: 'Person to greet' # Default value if no value is explicitly provided - default: 'World' + default: 'Worl123' # Input has to be provided for the workflow to run required: true # The data type of the input From cb1b7017e0826683d46f0c281ebc3a80fcc1a62d Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 15:32:27 -0400 Subject: [PATCH 13/30] Update manual.yml --- .github/workflows/manual.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index d29dde4..9e6c013 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,19 +4,7 @@ name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: - workflow_dispatch: - # Inputs the workflow accepts. - inputs: - name: - # Friendly description to be shown in the UI instead of 'name' - description: 'Person to greet' - # Default value if no value is explicitly provided - default: 'Worl123' - # Input has to be provided for the workflow to run - required: true - # The data type of the input - type: string +on: [push] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 7011cb811e585888ac583c9bffbabfe2edcc3a8f Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 15:33:58 -0400 Subject: [PATCH 14/30] Update manual.yml --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 9e6c013..fa35fa7 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,7 +4,7 @@ name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [push] +on: [pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 8ac65676dc5ad984f40e6db844da97414b4b7f67 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 15:36:08 -0400 Subject: [PATCH 15/30] Update manual.yml --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index fa35fa7..9e6c013 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,7 +4,7 @@ name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [pull_request] +on: [push] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 31a6824f2c4ae8b01b051fae665ac2e7b8fd391e Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 15:48:20 -0400 Subject: [PATCH 16/30] Update manual.yml --- .github/workflows/manual.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 9e6c013..045a1c2 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,7 +4,7 @@ name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [push] +on: [pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -17,4 +17,4 @@ jobs: steps: # Runs a single command using the runners shell - name: Send greeting - run: echo "Hello ${{ inputs.name }}" + run: echo "This is release branch" From d868de4871110d90ef557b9a1b9aa998402040e3 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 15:51:25 -0400 Subject: [PATCH 17/30] Delete .github/workflows/greenting.yml --- .github/workflows/greenting.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/greenting.yml diff --git a/.github/workflows/greenting.yml b/.github/workflows/greenting.yml deleted file mode 100644 index 4677434..0000000 --- a/.github/workflows/greenting.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Greetings - -on: [pull_request_target, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Message that will be displayed on users' first issue" - pr-message: "Message that will be displayed on users' first pull request" From 200a8a4c1a59617f8e6631866ce8139edc696f63 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 16:12:21 -0400 Subject: [PATCH 18/30] Update manual.yml --- .github/workflows/manual.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 045a1c2..9d63b6e 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,7 +4,10 @@ name: Manual workflow 2 # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [pull_request] +on: + pull_request: + branches: + - release # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From d6c92a90827d2c56a8e0be6581fc53318dc8f22e Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 7 May 2024 16:13:07 -0400 Subject: [PATCH 19/30] Update manual.yml --- .github/workflows/manual.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 9d63b6e..516e7ab 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -1,13 +1,13 @@ # This is a basic workflow that is manually triggered -name: Manual workflow 2 +name: Manual workflow new release # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. on: pull_request: branches: - - release + - newrelease # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -20,4 +20,4 @@ jobs: steps: # Runs a single command using the runners shell - name: Send greeting - run: echo "This is release branch" + run: echo "This is new release branch" From 8c12ec927f708b9cb02f1f41ef16f67c2898ca78 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:50:18 -0400 Subject: [PATCH 20/30] Update cloudbuild.yaml --- cloudbuild.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 442aa2f..58579a3 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -3,3 +3,7 @@ steps: args: - echo - Hello World! + - name: bash + args: + - sleep + - 20s From 80be96fd20fabc2518df8adbb128293f1e30c1c0 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:51:23 -0400 Subject: [PATCH 21/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 65d7159..2ce3de0 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,4 @@ test3 test test4 test5 +asdasd From 45dbfa3f6f18a732a63d408d91b08efada829c7f Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:51:30 -0400 Subject: [PATCH 22/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2ce3de0..38f298f 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,4 @@ test test4 test5 asdasd +asdasd From 901d72e5fe48ccddbfc71ba5a2cf147ae3c4bbff Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Fri, 21 Jun 2024 14:46:42 -0400 Subject: [PATCH 23/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 38f298f..56e7606 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,4 @@ test4 test5 asdasd asdasd +asdasd From fd8bf2eac2b462acf0c5c6ff9a1c535ee0cf34c8 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:48:31 -0400 Subject: [PATCH 24/30] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 56e7606..65d7159 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,3 @@ test3 test test4 test5 -asdasd -asdasd -asdasd From e7d4193705479c6cb586ce801902cf83da9e5a9e Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:49:07 -0400 Subject: [PATCH 25/30] Update manual.yml --- .github/workflows/manual.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 516e7ab..67763ed 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,10 +4,7 @@ name: Manual workflow new release # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: - pull_request: - branches: - - newrelease +on: [push] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 536cb93b68a222b6d5a67e1ec3fcb79267d34c03 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 8 Jul 2024 11:43:36 -0400 Subject: [PATCH 26/30] Update cloudbuild.yaml --- cloudbuild.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 58579a3..9f99dff 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -2,8 +2,10 @@ steps: - name: bash args: - echo - - Hello World! + - ${_KEY}! - name: bash args: - sleep - 20s +substitutions: + _KEY: cloudbuild.yaml From e1f15e99b47808b1cf6aeb92867348f6706c15f3 Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 8 Jul 2024 11:44:27 -0400 Subject: [PATCH 27/30] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 65d7159..8220084 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,4 @@ test3 test test4 test5 +test6 From 79f94220224c53ba31afe32db73a27d6a3f27fdd Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Wed, 10 Jul 2024 16:05:27 -0400 Subject: [PATCH 28/30] Update cloudbuild.yaml --- cloudbuild.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 9f99dff..7852113 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -9,3 +9,4 @@ steps: - 20s substitutions: _KEY: cloudbuild.yaml + REPO_NAME: asd From 30e87cef92dc2320727c1d0b054d0cb70fbbfe9f Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:05:12 -0400 Subject: [PATCH 29/30] Update manual.yml --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 67763ed..1cc4845 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -4,7 +4,7 @@ name: Manual workflow new release # Controls when the action will run. Workflow runs when manually triggered using the UI # or API. -on: [push] +on: [push, workflow_dispatch] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 031ce795b8b9a3967f55c99993351b484deb41bd Mon Sep 17 00:00:00 2001 From: Xinyu Sun <36331672+xinyusun1997@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:50:19 -0400 Subject: [PATCH 30/30] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 718f4d2..9afdc3a 100644 --- a/test.py +++ b/test.py @@ -1 +1,2 @@ t +asd