diff --git a/.github/workflows/assigned-pulls-todo.yml b/.github/workflows/assigned-pulls-todo.yml new file mode 100644 index 00000000..66b82968 --- /dev/null +++ b/.github/workflows/assigned-pulls-todo.yml @@ -0,0 +1,13 @@ +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: Demo + column: In progredd + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml new file mode 100644 index 00000000..83c49354 --- /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: To Do + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index e02cd858..4b0cc1e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## Welcome -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. +the 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. This is the NodeJS version of our "Tonkotsu" workshop webapp. The codebase is pretty simple: it's a NodeJS app that will connect to GitHub's [Octocat API endpoint](https://api.github.com/octocat) and return the Zen quote of the day. E.g.: diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 00000000..8a455419 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,12 @@ +sonar.projectKey=RaviSonataGit_workshop-tonkotsu-nodejs +sonar.organization=ravisonatagit + +# 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