From bb992d899eea2e07e6af0dc62cae5a79fcd82888 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 19:17:28 +0530 Subject: [PATCH 01/25] Create node.js.yml --- .github/workflows/node.js.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 00000000..0b26ddc2 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,16 @@ +name: Node.js CI +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + - run: npm ci + - run: npm run build --if-present + - run: npm test From 362f607893d016c070f0623bd682b4868ac2feeb Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 19:21:08 +0530 Subject: [PATCH 02/25] Update node.js.yml --- .github/workflows/node.js.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 0b26ddc2..ee0f5f92 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -14,3 +14,10 @@ jobs: - run: npm ci - run: npm run build --if-present - run: npm test + static-code-analysis: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v2 + - name: set up JDK + From 42a5d2d3a043e0b2ae9b6b4040d67d1dbdf8c27c Mon Sep 17 00:00:00 2001 From: RaviSonataGit Date: Thu, 25 Mar 2021 19:49:25 +0530 Subject: [PATCH 03/25] sonarcloud --- .github/workflows/node.js.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index ee0f5f92..351ea0b5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -20,4 +20,12 @@ jobs: - name: Checkout the code uses: actions/checkout@v2 - name: set up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: SonarCloud Scan + run: ./gradlew app:sonarqube -Dsonar.login=${{secrets.Sonar_TOKEN }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From d7827a608bcc410ab0928808b8fe38329ae383f2 Mon Sep 17 00:00:00 2001 From: RaviSonataGit Date: Thu, 25 Mar 2021 20:07:27 +0530 Subject: [PATCH 04/25] change --- .github/workflows/node.js.yml | 13 +++++-------- sonar-project.properties | 2 ++ 2 files changed, 7 insertions(+), 8 deletions(-) create mode 100644 sonar-project.properties diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 351ea0b5..d630f1d5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -15,17 +15,14 @@ jobs: - run: npm run build --if-present - run: npm test static-code-analysis: + name: SonarCloud Trigger runs-on: ubuntu-latest steps: - name: Checkout the code uses: actions/checkout@v2 - - name: set up JDK - uses: actions/setup-java@v1 - with: - java-version: 11 - - - name: SonarCloud Scan - run: ./gradlew app:sonarqube -Dsonar.login=${{secrets.Sonar_TOKEN }} + - name: Analyze with SonarCloud + uses: sonarsource/sonarcloud-github-action@v1.3 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 00000000..2d97ebab --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,2 @@ +sonar.organization=ravisonatagit +sonar.projectKey=RaviSonataGit_workshop-tonkotsu-nodejs \ No newline at end of file From ba6a34037201b50472f15b59ea695a72d10bbedb Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 20:44:20 +0530 Subject: [PATCH 05/25] Update sonar-project.properties --- sonar-project.properties | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index 2d97ebab..8a455419 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,2 +1,12 @@ +sonar.projectKey=RaviSonataGit_workshop-tonkotsu-nodejs sonar.organization=ravisonatagit -sonar.projectKey=RaviSonataGit_workshop-tonkotsu-nodejs \ No newline at end of file + +# This is the name and version displayed in the SonarCloud UI. +#sonar.projectName=workshop-tonkotsu-nodejs +#sonar.projectVersion=1.0 + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +#sonar.sources=. + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 From c8708c80bf7bec6cf197bd2e54e88bc3abeba74c Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 20:49:09 +0530 Subject: [PATCH 06/25] Update node.js.yml --- .github/workflows/node.js.yml | 36 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index d630f1d5..10ea09cb 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,28 +1,20 @@ -name: Node.js CI +name: Build on: push: - branches: [ master ] + branches: + - master pull_request: - branches: [ master ] + types: [opened, synchronize, reopened] jobs: - build: + sonarcloud: + name: SonarCloud runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - - run: npm ci - - run: npm run build --if-present - - run: npm test - static-code-analysis: - name: SonarCloud Trigger - runs-on: ubuntu-latest - steps: - - name: Checkout the code - uses: actions/checkout@v2 - - name: Analyze with SonarCloud - uses: sonarsource/sonarcloud-github-action@v1.3 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: SonarCloud Scan + uses: SonarSource/sonarcloud-github-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From be64b63a79aeb71ac5a8054f2d32bf21b6df4988 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 20:53:02 +0530 Subject: [PATCH 07/25] Update node.js.yml --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 10ea09cb..93a7de08 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,4 +1,4 @@ -name: Build +name: Build1 on: push: branches: From 9feded1163d252e06d3b3f435a0e7823174942e3 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 21:41:26 +0530 Subject: [PATCH 08/25] Update node.js.yml --- .github/workflows/node.js.yml | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 93a7de08..5c8f4de0 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,20 +1,21 @@ -name: Build1 -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened] +on: [push] + jobs: - sonarcloud: - name: SonarCloud + check-quality: runs-on: ubuntu-latest + name: A job to check my code quality steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + - name: Check code meets quality standards + id: code-inspector + uses: codeinspectorio/github-action@master + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + code_inspector_access_key: ${{ secrets.CODE_INSPECTOR_ACCESS_KEY }} + code_inspector_secret_key: ${{ secrets.CODE_INSPECTOR_SECRET_KEY }} + min_quality_grade: 'WARNING' + min_quality_score: '50' + max_defects_rate: '0.0001' + max_complex_functions_rate: '0.0001' + max_long_functions_rate: '0.0001' + project_name: '' + max_timeout_sec: '600' From ac6d5c7745502110fd7ee52d8ecf3a460b53fd8c Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Thu, 25 Mar 2021 21:44:12 +0530 Subject: [PATCH 09/25] Update node.js.yml --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 5c8f4de0..a2dc2f0e 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -14,8 +14,8 @@ jobs: code_inspector_secret_key: ${{ secrets.CODE_INSPECTOR_SECRET_KEY }} min_quality_grade: 'WARNING' min_quality_score: '50' - max_defects_rate: '0.0001' - max_complex_functions_rate: '0.0001' - max_long_functions_rate: '0.0001' + max_defects_rate: '1' + max_complex_functions_rate: '1' + max_long_functions_rate: '1' project_name: '' max_timeout_sec: '600' From fef43d9b16bac5294eda04bb377d9eb839d1e937 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:15:33 +0530 Subject: [PATCH 10/25] Update and rename node.js.yml to opened-issues-triage.yml --- .github/workflows/node.js.yml | 21 --------------------- .github/workflows/opened-issues-triage.yml | 13 +++++++++++++ 2 files changed, 13 insertions(+), 21 deletions(-) delete mode 100644 .github/workflows/node.js.yml create mode 100644 .github/workflows/opened-issues-triage.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml deleted file mode 100644 index a2dc2f0e..00000000 --- a/.github/workflows/node.js.yml +++ /dev/null @@ -1,21 +0,0 @@ -on: [push] - -jobs: - check-quality: - runs-on: ubuntu-latest - name: A job to check my code quality - steps: - - name: Check code meets quality standards - id: code-inspector - uses: codeinspectorio/github-action@master - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - code_inspector_access_key: ${{ secrets.CODE_INSPECTOR_ACCESS_KEY }} - code_inspector_secret_key: ${{ secrets.CODE_INSPECTOR_SECRET_KEY }} - min_quality_grade: 'WARNING' - min_quality_score: '50' - max_defects_rate: '1' - max_complex_functions_rate: '1' - max_long_functions_rate: '1' - project_name: '' - max_timeout_sec: '600' diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml new file mode 100644 index 00000000..860aa79b --- /dev/null +++ b/.github/workflows/opened-issues-triage.yml @@ -0,0 +1,13 @@ +name: Move new issues into Triage +on: + issues: + types: [opened] +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.3.0 + with: + project: Backlog + column: Triage + repo-token: ${{ secrets.GITHUB_TOKEN }} From da8e1e667ce3b51919204b6b110e63e3cd2641cf Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:17:32 +0530 Subject: [PATCH 11/25] Create assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/assigned-pulls-todo.yml diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml new file mode 100644 index 00000000..a593dfb3 --- /dev/null +++ b/.github/workflows/assigned-pulls-todo.yml @@ -0,0 +1,15 @@ +[18:14] Aravinda R + +name: Move assigned pull requests into To do +on: + pull_request: + types: [assigned] +jobs: + automate-project-columns: + runs-on: ubuntu-latest + steps: + - uses: alex-page/github-project-automation-plus@v0.3.0 + with: + project: Backlog + column: To do + repo-token: ${{ secrets.GITHUB_TOKEN }} From e04a3c0c97533a7de910e54afe6642002d4fadc1 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:17:50 +0530 Subject: [PATCH 12/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index a593dfb3..38d022c5 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -1,4 +1,4 @@ -[18:14] Aravinda R + name: Move assigned pull requests into To do on: From c80240f1ccbb0d391c98359db71685bbef058164 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:18:29 +0530 Subject: [PATCH 13/25] Create assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index 38d022c5..a6fb7880 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -1,5 +1,3 @@ - - name: Move assigned pull requests into To do on: pull_request: From c263f6c52dc77b0543958fc4ca6e9f5dba4f392f Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:20:38 +0530 Subject: [PATCH 14/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index a6fb7880..460867d1 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.3.0 with: - project: Backlog + project: Demo column: To do repo-token: ${{ secrets.GITHUB_TOKEN }} From 33859bb4e48a11f583e3b6d48b64e3f0c8430513 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:21:37 +0530 Subject: [PATCH 15/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index 460867d1..66b82968 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -9,5 +9,5 @@ jobs: - uses: alex-page/github-project-automation-plus@v0.3.0 with: project: Demo - column: To do + column: In progredd repo-token: ${{ secrets.GITHUB_TOKEN }} From 9e08ad9d5e9b92ab1606e966116de3c166872ee8 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:22:03 +0530 Subject: [PATCH 16/25] Update opened-issues-triage.yml --- .github/workflows/opened-issues-triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index 860aa79b..83c49354 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -9,5 +9,5 @@ jobs: - uses: alex-page/github-project-automation-plus@v0.3.0 with: project: Backlog - column: Triage + column: To Do repo-token: ${{ secrets.GITHUB_TOKEN }} From 0f06707c3ca5839a8790e2b0aa5291caf3ef5d9a Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:32:15 +0530 Subject: [PATCH 17/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index 66b82968..c7be197a 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -9,5 +9,5 @@ jobs: - uses: alex-page/github-project-automation-plus@v0.3.0 with: project: Demo - column: In progredd + column: In progress repo-token: ${{ secrets.GITHUB_TOKEN }} From 9b24a419c25c403a357aa897df0d2d3258421f05 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:32:36 +0530 Subject: [PATCH 18/25] Update opened-issues-triage.yml --- .github/workflows/opened-issues-triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index 83c49354..f808407e 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.3.0 with: - project: Backlog + project: Demo column: To Do repo-token: ${{ secrets.GITHUB_TOKEN }} From 62e35e3e5153d62a473217d11dffcf8c5d3f4d95 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:34:35 +0530 Subject: [PATCH 19/25] Update opened-issues-triage.yml --- .github/workflows/opened-issues-triage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index f808407e..551f889c 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.3.0 with: - project: Demo - column: To Do + project: hello + column: one repo-token: ${{ secrets.GITHUB_TOKEN }} From 2cb8010c9627de5682da642281a1a5fdaec3ead4 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:34:57 +0530 Subject: [PATCH 20/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index c7be197a..3bf2bd57 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.3.0 with: - project: Demo - column: In progress + project: hello + column: two repo-token: ${{ secrets.GITHUB_TOKEN }} From 742b0e94bb583f0c852e2df99f79ea9d73459b0d Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:38:06 +0530 Subject: [PATCH 21/25] Update opened-issues-triage.yml --- .github/workflows/opened-issues-triage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index 551f889c..75122a9c 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -11,3 +11,6 @@ jobs: project: hello column: one repo-token: ${{ secrets.GITHUB_TOKEN }} + + + From a1501a7f9c5bbd63acd60fb1e449c708536c9245 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:38:37 +0530 Subject: [PATCH 22/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index 3bf2bd57..c6959ddd 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -11,3 +11,4 @@ jobs: project: hello column: two repo-token: ${{ secrets.GITHUB_TOKEN }} + From 9261007ec1343fe51677c1e0730eb76ff7368f27 Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:52:11 +0530 Subject: [PATCH 23/25] Update assigned-pulls-todo.yml --- .github/workflows/assigned-pulls-todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml index c6959ddd..95cc63bf 100644 --- a/.github/workflows/assigned-pulls-todo.yml +++ b/.github/workflows/assigned-pulls-todo.yml @@ -10,5 +10,5 @@ jobs: with: project: hello column: two - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GH_TOKEN }} From 5eed5a182d87125ab275da6e18791d59ef0bb0fc Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:52:33 +0530 Subject: [PATCH 24/25] Update opened-issues-triage.yml --- .github/workflows/opened-issues-triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index 75122a9c..05b3d305 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -10,7 +10,7 @@ jobs: with: project: hello column: one - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GH_TOKEN }} From 51fad584787e5aaa8d1433e4971dc79015999bff Mon Sep 17 00:00:00 2001 From: RaviSonataGit <79079843+RaviSonataGit@users.noreply.github.com> Date: Fri, 26 Mar 2021 18:59:48 +0530 Subject: [PATCH 25/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e02cd858..6f566970 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Welcome +## Wcome This repository contains the base project part of our on-site GitHub Verified Partner workshop program. It is meant to be used for in-classroom training under the supervision of GitHub coaches.